blob: 3af5369b3e93d67e068a42efb0993fcc83d62da2 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | 
import json
import pytest
from fatcat_client.rest import ApiException
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
 |