Ignore:
Timestamp:
Apr 22, 2011, 1:14:08 PM (13 years ago)
Author:
gav
Message:

Domain change, rename PurchaseOrder.comment to singular, set maxSize constraint and init with blank string.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/features/purchaseOrders/test/unit/PurchaseOrderServiceTests.groovy

    r894 r896  
    5555        def po = pos.getOrCreatePurchaseOrder(params)
    5656
    57         assertThat po.comments, equalTo("Created by test")
     57        assertThat po.comment, equalTo("Created by test")
    5858        assertThat po.purchaseOrderNumber.value, equalTo("P1001")
    5959    }
     
    6767        def po = pos.getOrCreatePurchaseOrder(params)
    6868
    69         assertThat po.comments, equalTo(null)
     69        assertThat po.comment, equalTo("")
    7070        assertThat po.purchaseOrderNumber.value, equalTo("P1003")
    7171    }
     
    8787    def createPurchaseOrders(int howMany) {
    8888        for (int i=0; i<howMany; i++) {
    89             def po = new PurchaseOrder(comments:"Created by test", supplier:new Supplier())
     89            def po = new PurchaseOrder(comment:"Created by test", supplier:new Supplier())
    9090            def pon = PurchaseOrderNumber.list()[i]
    9191            pon.purchaseOrder = po;
Note: See TracChangeset for help on using the changeset viewer.