blob: 0edf06d12d000a70d6e00479dab7067bf7ace7b9 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | 
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
 |