diff options
Diffstat (limited to 'spec/rubyspec/library/getoptlong/terminated_spec.rb')
-rw-r--r-- | spec/rubyspec/library/getoptlong/terminated_spec.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/rubyspec/library/getoptlong/terminated_spec.rb b/spec/rubyspec/library/getoptlong/terminated_spec.rb new file mode 100644 index 0000000000..feaf2bc09e --- /dev/null +++ b/spec/rubyspec/library/getoptlong/terminated_spec.rb @@ -0,0 +1,17 @@ +require File.expand_path('../../../spec_helper', __FILE__) +require 'getoptlong' + +describe "GetoptLong#terminated?" do + it "returns true if option processing has terminated" do + argv [ "--size", "10k" ] do + opts = GetoptLong.new(["--size", GetoptLong::REQUIRED_ARGUMENT]) + opts.terminated?.should == false + + opts.get.should == ["--size", "10k"] + opts.terminated?.should == false + + opts.get.should == nil + opts.terminated?.should == true + end + end +end |