diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/t0040-parse-options.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/t0040-parse-options.sh b/t/t0040-parse-options.sh index b044785175..372d521c25 100755 --- a/t/t0040-parse-options.sh +++ b/t/t0040-parse-options.sh @@ -132,6 +132,8 @@ test_expect_success 'OPT_BOOL() no negation #2' 'check_unknown_i18n --no-no-fear test_expect_success 'OPT_BOOL() positivation' 'check boolean: 0 -D --doubt' +test_expect_success 'OPT_INT() negative' 'check integer: -2345 -i -2345' + cat > expect << EOF boolean: 2 integer: 1729 |