예제 #1
0
 def tearDown(self):
     connection.execute(survey_table.delete().where(
         survey_table.c.survey_title == 'update2'))
예제 #2
0
 def tearDown(self):
     super().tearDown()
     connection.execute(survey_table.delete().where(
         survey_table.c.survey_title.like('test_question_type_%')))
예제 #3
0
 def tearDown(self):
     connection.execute(survey_table.delete().where(
         survey_table.c.survey_title.like('test insert%')))
     connection.execute(auth_user_table.delete().where(
         auth_user_table.c.email == 'TestSurveyEmail'
     ))