diff options
Diffstat (limited to 'spec/rubyspec/library/getoptlong/terminate_spec.rb')
-rw-r--r-- | spec/rubyspec/library/getoptlong/terminate_spec.rb | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/spec/rubyspec/library/getoptlong/terminate_spec.rb b/spec/rubyspec/library/getoptlong/terminate_spec.rb deleted file mode 100644 index ad9f9a1623..0000000000 --- a/spec/rubyspec/library/getoptlong/terminate_spec.rb +++ /dev/null @@ -1,30 +0,0 @@ -require File.expand_path('../../../spec_helper', __FILE__) -require 'getoptlong' - -describe "GetoptLong#terminate" do - before :each do - @opts = GetoptLong.new( - [ '--size', '-s', GetoptLong::REQUIRED_ARGUMENT ], - [ '--verbose', '-v', GetoptLong::NO_ARGUMENT ], - [ '--query', '-q', GetoptLong::NO_ARGUMENT ], - [ '--check', '--valid', '-c', GetoptLong::NO_ARGUMENT ] - ) - end - - it "terminates option proccessing" do - argv [ "--size", "10k", "-v", "-q", "a.txt", "b.txt" ] do - @opts.get.should == [ "--size", "10k" ] - @opts.terminate - @opts.get.should == nil - end - end - - it "returns self when option processsing is terminated" do - @opts.terminate.should == @opts - end - - it "returns nil when option processing was already terminated" do - @opts.terminate - @opts.terminate.should == nil - end -end |