Exemplo n.º 1
0
 def test_find_nonexistent(self):
     svc = Service.find_service('nonexistent')
     self.assertIsNone(svc)
Exemplo n.º 2
0
 def test_find_myservice(self):
     svc = Service.find_service('myservice')
     self.assertIs(MyService, svc)
Exemplo n.º 3
0
 def test_abstract(self):
     s = Service(log=Mock(), db=Mock())
     self.assertRaises(NotImplementedError, s.main)
Exemplo n.º 4
0
 def test_find_myservice(self):
     svc = Service.find_service('myservice')
     self.assertIs(MyService, svc)
Exemplo n.º 5
0
 def test_find_nonexistent(self):
     svc = Service.find_service('nonexistent')
     self.assertIsNone(svc)
Exemplo n.º 6
0
 def test_find_inherited(self):
     svc = Service.find_service('inherited_service')
     self.assertIs(InheritedService, svc)
Exemplo n.º 7
0
 def test_find_inherited(self):
     svc = Service.find_service('inherited_service')
     self.assertIs(InheritedService, svc)