Exemplo n.º 1
0
 def setUp(self):
     self.app = app.test_client()
     self.app.testing = True
Exemplo n.º 2
0
 def setUp(self):
     self.app = app.test_client()
Exemplo n.º 3
0
 def setUp(self):
     self.app = app.test_client()
     self.app.testing = True
     test = Test('test01')
     db.session.add(test)
     db.session.commit()
Exemplo n.º 4
0
 def setUp(self):
     app.config['WTF_CSRF_ENABLED'] = False
     self.app = app.test_client()