browser-go-api/tests/base.py

14 lines
231 B
Python
Raw Permalink Normal View History

2019-10-04 18:24:11 +00:00
from flask_testing import TestCase
from ..app import app, db
class BaseTestCase(TestCase):
""" Base Tests """
def create_app(self):
pass
def setUp(self):
pass
def tearDown(self):
pass