1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

version 0.9.1, fixed windows tests

This commit is contained in:
John Mair 2011-06-17 03:01:04 +12:00
parent 4a1c6c291f
commit 63b36b46fc
2 changed files with 3 additions and 3 deletions

View file

@ -1,3 +1,3 @@
class Pry
VERSION = "0.9.0"
VERSION = "0.9.1"
end

View file

@ -64,12 +64,12 @@ describe Pry do
end
it 'should make self evaluate to the receiver of the rep session' do
o = Object.new
o = :john
str_output = StringIO.new
pry_tester = Pry.new(:input => InputTester.new("self"), :output => str_output)
pry_tester.rep(o)
str_output.string.should =~ /#{o.to_s}/
str_output.string.should =~ /:john/
end
it 'should work with multi-line input' do