diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/parser_test.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/parser_test.rb b/test/parser_test.rb index ef09714..b729ee8 100644 --- a/test/parser_test.rb +++ b/test/parser_test.rb @@ -1,4 +1,5 @@ require 'test_helper' +require 'shellwords' describe Slop::Parser do before do @@ -28,6 +29,15 @@ describe Slop::Parser do assert_equal %w(=), @result.args end + it "parses flag=''" do + @options.string "--str" + @options.array "--arr", default: ["array"] + @result.parser.parse %(--str="" --arr="").shellsplit + + assert_equal "", @result[:str] + assert_equal [], @result[:arr] + end + it "parses arg with leading -" do @options.string "-t", "--text" @result.parser.parse %w(--name=bob --text --sometext) |