def test_tables(self): """ Tests if it show all tables in the database. """ self.assertFalse(sqlite3.tables()) self.assertTrue(sqlite3.tables("/root/test.db"))
def test_tables(self): ''' Tests if it show all tables in the database. ''' self.assertFalse(sqlite3.tables()) self.assertTrue(sqlite3.tables('/root/test.db'))