diff options
author | Nathan Gass | 2024-02-21 10:22:32 +0100 |
---|---|---|
committer | Nathan Gass | 2024-02-21 10:22:32 +0100 |
commit | 486126e92b87d9ca32ae2596f74054c234cd7a19 (patch) | |
tree | 6c682bbdb050b8d42725d28cf7d8c70b944a68ca /test | |
parent | 19a29ba848ac66fedbbb7059df09f93675e48a26 (diff) | |
download | itools-486126e92b87d9ca32ae2596f74054c234cd7a19.tar.gz itools-486126e92b87d9ca32ae2596f74054c234cd7a19.tar.bz2 itools-486126e92b87d9ca32ae2596f74054c234cd7a19.zip |
it::getopt: do not eat up second --
Diffstat (limited to 'test')
-rwxr-xr-x | test/it.t | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -565,6 +565,7 @@ function requesturi($teststring, $expect) _getopt(["val"], ['foo' => "val"]); _getopt(["--", "-val"], ['foo' => "-val"]); +_getopt(["--", "--"], ['foo' => "--"]); _getopt(["-v", "val"], ['verbose' => true, 'foo' => "val"]); _getopt(["--verbose", "val"], ['verbose' => true, 'foo' => "val"]); _getopt(["-vw", "val"], ['verbose' => true, 'werbose' => true, 'foo' => "val"]); |