Пример #1
0
 def setUp(self):
     self.client = self.app.test_client()
     self.ctx = self.app.test_request_context()
     self.ctx.push()
     init_db()
Пример #2
0
from beancounter import create_app
from beancounter.model import init_db

app = create_app('../config.py')
with app.test_request_context():
    init_db()