summaryrefslogtreecommitdiff
path: root/spec/commands/gem_list_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/commands/gem_list_spec.rb')
-rw-r--r--spec/commands/gem_list_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/commands/gem_list_spec.rb b/spec/commands/gem_list_spec.rb
index cef5c745..11ce6c6d 100644
--- a/spec/commands/gem_list_spec.rb
+++ b/spec/commands/gem_list_spec.rb
@@ -10,13 +10,13 @@ describe "gem-list" do
it 'should work arglessly' do
list = pry_eval('gem-list')
list.should =~ /slop \(/
- list.should =~ /bacon \(/
+ list.should =~ /minitest \(/
end
it 'should find arg' do
prylist = pry_eval('gem-list slop')
prylist.should =~ /slop \(/
- prylist.should.not =~ /bacon/
+ prylist.should.not =~ /minitest/
end
it 'should return non-results as silence' do