diff options
Diffstat (limited to 'test/test_app.py')
-rw-r--r-- | test/test_app.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/test_app.py b/test/test_app.py deleted file mode 100644 index 577a70a5..00000000 --- a/test/test_app.py +++ /dev/null @@ -1,14 +0,0 @@ -from . import tutils, tservers - - -class TestApp(tservers.HTTPProxTest): - - def test_basic(self): - assert self.app("/").status_code == 200 - - def test_cert(self): - with tutils.tmpdir() as d: - for ext in ["pem", "p12"]: - resp = self.app("/cert/%s" % ext) - assert resp.status_code == 200 - assert resp.content |