]> git.jsancho.org Git - datasette-pytables.git/blobdiff - tests/test_api.py
Test for non-existent tables
[datasette-pytables.git] / tests / test_api.py
index b48017c0cda65456cf7a27d58eebeb2c84022546..72d14b18e4dca6c1a720649d0221818cb57c76e6 100644 (file)
@@ -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