aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/getoptlong/terminated_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/getoptlong/terminated_spec.rb')
-rw-r--r--spec/ruby/library/getoptlong/terminated_spec.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/ruby/library/getoptlong/terminated_spec.rb b/spec/ruby/library/getoptlong/terminated_spec.rb
new file mode 100644
index 0000000000..feaf2bc09e
--- /dev/null
+++ b/spec/ruby/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