1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/test/test_commands/test_gem_list.rb
2012-09-15 14:50:30 -07:00

26 lines
563 B
Ruby

require 'helper'
describe "gem-list" do
# fixing bug for 1.8 compat
it 'should not raise when invoked' do
proc {
pry_eval(self, 'gem-list')
}.should.not.raise
end
it 'should work arglessly' do
list = pry_eval('gem-list')
list.should =~ /slop \(/
list.should =~ /bacon \(/
end
it 'should find arg' do
prylist = pry_eval('gem-list slop')
prylist.should =~ /slop \(/
prylist.should.not =~ /bacon/
end
it 'should return non-results as silence' do
pry_eval('gem-list aoeuoueouaou').should.empty?
end
end