예제 #1
0
파일: sqltests.py 프로젝트: bmay2/Projects
 def testCheckGoodTable(self):
     good_table = exercises.check_if_table_exists('Exercises', self.c)
     self.assertIsNotNone(good_table)
예제 #2
0
파일: sqltests.py 프로젝트: bmay2/Projects
 def testCheckBadTable(self):
     bad_table = exercises.check_if_table_exists('nope', self.c)
     self.assertIsNone(bad_table)