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