Skip to content

Commit

Permalink
version 0.9.1, fixed windows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
banister committed Jun 16, 2011
1 parent 4a1c6c2 commit 63b36b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/pry/version.rb
@@ -1,3 +1,3 @@
class Pry
VERSION = "0.9.0"
VERSION = "0.9.1"
end
4 changes: 2 additions & 2 deletions test/test_pry.rb
Expand Up @@ -64,12 +64,12 @@ class Hello
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
Expand Down

0 comments on commit 63b36b4

Please sign in to comment.