summaryrefslogtreecommitdiff
path: root/tests.py
blob: 9d52baa26d9db520fea31cb3b645518689199943 (plain)
1
2
3
4
5
6
7
8
9
10
from apistar.test import TestClient
from app import app, welcome


def test_welcome():
    """
    Testing a view directly.
    """
    data = welcome()
    assert data == {'message': 'Welcome to API Star!'}