aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/web_routes.py
blob: 3c4ad9464988c127ed06b5d0ad7e350de4181092 (plain)
1
2
3
4
5
6
7
8
9
10
from fixtures import *


def test_static_routes(app):
    for route in ("/health.json", "/robots.txt", "/", "/about", "/rfc", "/static/fatcat.jpg"):
        rv = app.get(route)
        assert rv.status_code == 200

    assert app.get("/search").status_code == 302
    assert app.get("/static/bogus/route").status_code == 404