diff --git a/coworking_coworker/tests/test_coworking_coworker.py b/coworking_coworker/tests/test_coworking_coworker.py index aeddba9..6166655 100644 --- a/coworking_coworker/tests/test_coworking_coworker.py +++ b/coworking_coworker/tests/test_coworking_coworker.py @@ -31,6 +31,7 @@ class TestCoworkingCoworker(TransactionCase): self.assertIn('equal of inferior to', unicode(err.exception)) def test_full_address(self): + """Test full address""" self.homer.write({'street': False, 'zip': False, 'city': False}) self.assertEqual(self.homer.full_contact_adress, u'') @@ -46,7 +47,9 @@ class TestCoworkingCoworker(TransactionCase): self.homer.write({'street': u'42 Liberty Street', 'zip': False, 'city': u'Springfield'}) self.assertEqual(self.homer.full_contact_adress, u'42 Liberty Street Springfield') - + def test_manage_coworker_type(self): """ Test that non-coworker have not coworker_type fixed """ + + pass