mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
74135c1890
'bacon spec/config_spec.rb' instead of 'bacon -I spec spec/config_spec.rb'
25 lines
545 B
Ruby
25 lines
545 B
Ruby
require_relative '../helper'
|
|
|
|
describe "gem-list" do
|
|
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
|