Exemplo n.º 1
0
 def test_existe_cond_False(self):
     cond = 'EMPRESTA pokemon_nombre DE estadisticas'
     test = consult.exist_condition(cond, self.tables)
     self.assertFalse(test)
Exemplo n.º 2
0
 def test_existe_cond_True(self):
     cond = 'EMPRESTA estadistica_nombre DE estadisticas'
     test = consult.exist_condition(cond, self.tables)
     self.assertTrue(test)