1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/getoptlong/shared/each.rb

19 lines
659 B
Ruby
Raw Normal View History

describe :getoptlong_each, shared: true 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 "passes each argument/value pair to the block" do
argv [ "--size", "10k", "-v", "-q", "a.txt", "b.txt" ] do
pairs = []
@opts.send(@method) { |arg, val| pairs << [ arg, val ] }
pairs.should == [ [ "--size", "10k" ], [ "--verbose", "" ], [ "--query", ""] ]
end
end
end