コード例 #1
0
 def test_manufacturer_may_be_null(self):
     ProductRegistration(manufacturer=None)
コード例 #2
0
 def set_up_biofloxx_registration(self, manufacturer, supplier, country):
     registration = ProductRegistration(product=self.biofloxx,
                                        manufacturer=manufacturer,
                                        supplier=supplier,
                                        country=country)
     registration.save()
コード例 #3
0
 def test_supplier_may_be_null(self):
     ProductRegistration(supplier=None)