''' functional tests for ordr2.views.errors ''' from . import testappsetup, testapp # noqa: F401 def test_404(testapp): # noqa: F811 ''' test the 404 page ''' response = testapp.get('/unknown', status=404) assert '404' in response