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:
parent
4a1c6c291f
commit
63b36b46fc
2 changed files with 3 additions and 3 deletions
|
@ -1,3 +1,3 @@
|
|||
class Pry
|
||||
VERSION = "0.9.0"
|
||||
VERSION = "0.9.1"
|
||||
end
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue