8 lines
183 B
Python
8 lines
183 B
Python
import unittest
|
|
from app import create_app
|
|
|
|
|
|
class BaseTestCase(unittest.TestCase):
|
|
def setUp(self):
|
|
self.app = create_app({})
|
|
self.client = self.app.test_client() |