aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_cmdline.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_cmdline.py')
-rw-r--r--test/test_cmdline.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_cmdline.py b/test/test_cmdline.py
index 799e0e24..dc93640f 100644
--- a/test/test_cmdline.py
+++ b/test/test_cmdline.py
@@ -12,13 +12,18 @@ class uAll(libpry.AutoTree):
assert cmdline.get_common_options(opts)
opts.stickycookie_all = True
+ opts.stickyauth_all = True
v = cmdline.get_common_options(opts)
assert v["stickycookie"] == ".*"
+ assert v["stickyauth"] == ".*"
opts.stickycookie_all = False
+ opts.stickyauth_all = False
opts.stickycookie_filt = "foo"
+ opts.stickyauth_filt = "foo"
v = cmdline.get_common_options(opts)
assert v["stickycookie"] == "foo"
+ assert v["stickyauth"] == "foo"