3
from resourcing import ResourcingTest
6
class ResourcingFOTest(ResourcingTest):
8
def create_order(self, db):
10
Create a field order (sale.order) with 4 lines:
11
- 2 lines with LOG products:
14
- 2 lines with MED products:
19
order_id = super(ResourcingFOTest, self).\
23
def test_010_only_create(self):
25
order_id = self.create_order(db)
29
'''Return the class to use for tests'''
30
return ResourcingFOTest
32
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: