2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 08:04:49 -04:00
|
|
|
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
|
|
|
|
|
2017-10-28 11:15:48 -04:00
|
|
|
it "terminates option processing" do
|
2017-05-07 08:04:49 -04:00
|
|
|
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
|