コード例 #1
0
ファイル: conftest.py プロジェクト: karimtabet/gamecology
def app():
    _app = create_app(TestConfig)
    ctx = _app.test_request_context()
    ctx.push()

    yield _app

    ctx.pop()
コード例 #2
0
ファイル: test_config.py プロジェクト: karimtabet/gamecology
def test_dev_config():
    app = create_app(DevConfig)
    assert app.config['ENV'] == 'dev'
    assert app.config['DEBUG'] is True
    assert app.config['ASSETS_DEBUG'] is True
コード例 #3
0
ファイル: test_config.py プロジェクト: karimtabet/gamecology
def test_production_config():
    app = create_app(ProdConfig)
    assert app.config['ENV'] == 'prod'
    assert app.config['DEBUG'] is False
    assert app.config['DEBUG_TB_ENABLED'] is False
    assert app.config['ASSETS_DEBUG'] is False
コード例 #4
0
ファイル: manage.py プロジェクト: karimtabet/gamecology
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import subprocess
from flask.ext.script import Manager, Shell, Server
from flask.ext.migrate import MigrateCommand

from gamecology.app import create_app
from gamecology.user.models import User
from gamecology.settings import DevConfig, ProdConfig
from gamecology.database import db

if os.environ.get("GAMECOLOGY_ENV") == 'prod':
    app = create_app(ProdConfig)
else:
    app = create_app(DevConfig)

manager = Manager(app)
TEST_CMD = "py.test tests"

def _make_context():
    """Return context dict for a shell session so you can access
    app, db, and the User model by default.
    """
    return {'app': app, 'db': db, 'User': User}

@manager.command
def test():
    """Run the tests."""
    status = subprocess.call(TEST_CMD, shell=True)