summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLee Jarvis <leejarvis@fastmail.com>2023-02-26 18:25:59 +0000
committerLee Jarvis <leejarvis@fastmail.com>2023-02-26 18:25:59 +0000
commitde796008bba708263b5cf093b48af7a6ebeb1d1a (patch)
treeb9de37ecb366535a05073b292e4b7f47c564ced2 /test
parent274e35b55c1cf4de653b0b408f8bc363ca04cd12 (diff)
downloadslop-de796008bba708263b5cf093b48af7a6ebeb1d1a.tar.gz
Fix booleans without validate_type with arguments
If we're not using `validate_type`, we shouldn't try to check a boolean flag's argument to check if it's valid (actually, we probably shouldn't even do that WITH using `validate_type`, but that's a separate issue). For now, this will prevent broken boolean flags. Fixes #279
Diffstat (limited to 'test')
-rw-r--r--test/types_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/types_test.rb b/test/types_test.rb
index c6f0864..05e6265 100644
--- a/test/types_test.rb
+++ b/test/types_test.rb
@@ -66,6 +66,13 @@ describe Slop::BoolOption do
@result.parser.parse %w(--verbose foo)
end
end
+
+ # Like above but without validate_type
+ it "returns true if used and ignores the value" do
+ @result.parser.parse %w(--quiet foo)
+
+ assert_equal true, @result[:quiet]
+ end
end
describe Slop::IntegerOption do