aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_pathoc_cmdline.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_pathoc_cmdline.py')
-rw-r--r--test/test_pathoc_cmdline.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_pathoc_cmdline.py b/test/test_pathoc_cmdline.py
index 03c83844..6c070aed 100644
--- a/test/test_pathoc_cmdline.py
+++ b/test/test_pathoc_cmdline.py
@@ -31,9 +31,11 @@ def test_pathoc(perror):
a = cmdline.args_pathoc(["pathoc", "foo.com", "get:/", "--http2"])
assert a.use_http2 == True
+ assert a.ssl == True
a = cmdline.args_pathoc(["pathoc", "foo.com", "get:/", "--http2-skip-connection-preface"])
assert a.use_http2 == True
+ assert a.ssl == True
assert a.http2_skip_connection_preface == True
a = cmdline.args_pathoc(["pathoc", "-c", "foo", "foo.com:8888", "get:/"])