summaryrefslogtreecommitdiff
path: root/test/error_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/error_test.rb')
-rw-r--r--test/error_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/error_test.rb b/test/error_test.rb
index 848e2d5..2f7730b 100644
--- a/test/error_test.rb
+++ b/test/error_test.rb
@@ -21,6 +21,12 @@ describe Slop::MissingArgument do
opts.string "-n", "--name"
opts.parse %w(--name)
end
+
+ it "does not raise if '--' appears as the first argument" do
+ opts = Slop::Options.new
+ opts.string "-n", "--name"
+ opts.parse %w(-- --name)
+ end
end
describe Slop::UnknownOption do