diff options
Diffstat (limited to 'test/test_app.py')
-rw-r--r-- | test/test_app.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_app.py b/test/test_app.py index e7c1c085..7b2451d6 100644 --- a/test/test_app.py +++ b/test/test_app.py @@ -11,10 +11,15 @@ class TestApp(tutils.DaemonTests): r = self.getpath("/about") assert r.ok + def test_download(self): + r = self.getpath("/download") + assert r.ok + def test_docs(self): assert self.getpath("/docs/pathod").status_code == 200 assert self.getpath("/docs/pathoc").status_code == 200 assert self.getpath("/docs/language").status_code == 200 + assert self.getpath("/docs/libpathod").status_code == 200 assert self.getpath("/docs/test").status_code == 200 def test_log(self): |