X-Git-Url: https://git.jsancho.org/?p=datasette-pytables.git;a=blobdiff_plain;f=tests%2Ftest_api.py;h=72d14b18e4dca6c1a720649d0221818cb57c76e6;hp=b48017c0cda65456cf7a27d58eebeb2c84022546;hb=5f5e1e533d98b36bbb159487984d5d95b2ff3ae2;hpb=a0ba326e2827753049cf411967bea0503c30154a diff --git a/tests/test_api.py b/tests/test_api.py index b48017c..72d14b1 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -106,3 +106,13 @@ def test_table_json(app_client): 'idnumber': 5, 'speed': 10.0 }] + +def test_table_not_exists_json(app_client): + assert { + 'ok': False, + 'error': 'Table not found: blah', + 'status': 404, + 'title': None, + } == app_client.get( + '/test_tables/blah.json', gather_request=False + ).json