Beispiel #1
0
 def test_configura_conteudo_not_implemented_raise_error(self):
     engine = Engine()
     with self.assertRaises(NotImplementedError):
         engine.configura_conteudo()
Beispiel #2
0
 def test_get_data_without_data(self):
     engine = Engine()
     self.assertFalse(engine.get_data())
Beispiel #3
0
 def test_busca_dados_not_implemented_raise_error(self):
     engine = Engine()
     with self.assertRaises(NotImplementedError):
         engine.busca_dados()
Beispiel #4
0
 def test_instantiate_engine(self):
     Engine()