From 97192b2a3ce002a51c1875edf8d3a957e28412e8 Mon Sep 17 00:00:00 2001 From: michel Date: Mon, 4 Dec 2017 10:23:33 +0100 Subject: [PATCH] / --- coworking_coworker/tests/test_coworking_coworker.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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