Ejemplo n.º 1
0
 def setUp(self):
     self.product_type = ProductTypeFactory(name='product-name',
                                            code='product-code')
     self.process_type = ProcessTypeFactory(name='process-name',
                                            code='pc',
                                            unit='process-unit')
     self.task = TaskFactory.create(process_type=self.process_type,
                                    product_type=self.product_type)
Ejemplo n.º 2
0
 def setUp(self):
     self.task = TaskFactory.create()
     self.attribute = AttributeFactory()