diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-04-24 07:35:17 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-04-24 07:35:17 +1200 |
commit | 5405a4d458434bd42538472947bb07476ea83b89 (patch) | |
tree | b856b7dd49391734f8791549e58bfbe4d6aa972b /test/test_pathod.py | |
parent | b0ab5297d161d61975e67b04ba58a71f97c5cba8 (diff) | |
download | mitmproxy-5405a4d458434bd42538472947bb07476ea83b89.tar.gz mitmproxy-5405a4d458434bd42538472947bb07476ea83b89.tar.bz2 mitmproxy-5405a4d458434bd42538472947bb07476ea83b89.zip |
Pull HTTP functionality out of language._Message in prep for frames
Diffstat (limited to 'test/test_pathod.py')
-rw-r--r-- | test/test_pathod.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_pathod.py b/test/test_pathod.py index 18b546e4..1a10d2c2 100644 --- a/test/test_pathod.py +++ b/test/test_pathod.py @@ -188,6 +188,9 @@ class CommonTests(tutils.DaemonTests): r = self.pathoc("ws:/p/") assert r.status_code == 101 + r = self.pathoc("ws:/p/ws") + assert r.status_code == 101 + class TestDaemon(CommonTests): ssl = False |