mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
27 lines
563 B
Ruby
27 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
|