diff options
author | 2018-06-05 15:14:52 +0200 | |
---|---|---|
committer | 2018-06-05 14:14:52 +0100 | |
commit | b8c2be0b446be35c273ccaf5ff10fd980be0edcc (patch) | |
tree | c1a068d3e43420e26626c2fd53e1e8c06da6c24c /tests/test_api.py | |
parent | [Jams] Fix signup message (diff) |
documentation metadata API (#57)
* Add documentation metadata "schema".
* Add seed data for `pydoc_links` table.
* Add tests for the `doc` API.
* Allow specifying multiple parameters.
* Move up line in generator.
* make each docs test a function for greater test report visibility
* fix a typo
* Use fixtures instead of `pytest-ordering`.
* Move `doc` API to `/bot/doc`.
* Use new migration system.
Diffstat (limited to 'tests/test_api.py')
-rw-r--r-- | tests/test_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_api.py b/tests/test_api.py index a0b22846..b20dc0c5 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -1,6 +1,6 @@ from tests import SiteTest, app -class ApiEndpointsRootEndpoints(SiteTest): +class ApiEndpoints(SiteTest): """ Test cases for the api subdomain """ def test_api_unknown_route(self): """ Check api unknown route """ |