Ejemplo n.º 1
0
 def tearDown(self):
     connection.execute(survey_table.delete().where(
         survey_table.c.survey_title == 'update2'))
Ejemplo n.º 2
0
 def tearDown(self):
     super().tearDown()
     connection.execute(survey_table.delete().where(
         survey_table.c.survey_title.like('test_question_type_%')))
Ejemplo n.º 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'
     ))