Exemplo n.º 1
0
 def assertColumnNotExists(self, engine, table_name, column):
     self.assertFalse(oslodbutils.column_exists(engine, table_name, column))
Exemplo n.º 2
0
 def test_column_exists(self):
     for col in ['a', 'b']:
         self.assertTrue(utils.column_exists(self.engine, 'test_table',
                                             col))
     self.assertFalse(
         utils.column_exists(self.engine, 'test_table', 'fake_column'))
Exemplo n.º 3
0
 def assertColumnNotExists(self, engine, table_name, column):
     self.assertFalse(oslodbutils.column_exists(engine, table_name, column))
Exemplo n.º 4
0
 def test_column_exists(self):
     for col in ['a', 'b']:
         self.assertTrue(utils.column_exists(self.engine, 'test_table',
                                             col))
     self.assertFalse(utils.column_exists(self.engine, 'test_table',
                                          'fake_column'))
Exemplo n.º 5
0
 def test_column_exists(self):
     for col in ["a", "b"]:
         self.assertTrue(utils.column_exists(self.engine, "test_table", col))
     self.assertFalse(utils.column_exists(self.engine, "test_table", "fake_column"))