added regression test for gem-list, PLS ppl remember to test on 1.8 too!! :))

This commit is contained in:
John Mair 2011-06-08 01:00:43 +12:00
parent cf2b6d4e80
commit 5e434a6045
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
require 'helper'
describe "Pry::DefaultCommands::Gems" do
describe "gem-list" do
# fixing bug for 1.8 compat
it 'should not raise when invoked' do
str_output = StringIO.new
Pry.start self, :input => InputTester.new("gem-list", "exit-all"), :output => str_output
str_output.string.should.not =~ /NoMethodError/
end
end
end