mirror of https://github.com/mitsuhiko/flask.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
401 B
21 lines
401 B
# -*- coding: utf-8 -*- |
|
""" |
|
Larger App Tests |
|
~~~~~~~~~~~~~~~~ |
|
|
|
:copyright: © 2010 by the Pallets team. |
|
:license: BSD, see LICENSE for more details. |
|
""" |
|
|
|
from yourapplication import app |
|
import pytest |
|
|
|
@pytest.fixture |
|
def client(): |
|
app.config['TESTING'] = True |
|
client = app.test_client() |
|
return client |
|
|
|
def test_index(client): |
|
rv = client.get('/') |
|
assert b"Hello World!" in rv.data
|
|
|