mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
fae1417e5c
This is working around (another) brokenness in jruby 1.6.8s splat handling in ruby 1.9 mode; but I figure that now jruby 1.7 is out, we can not bother fixing it.
68 lines
1.8 KiB
Ruby
68 lines
1.8 KiB
Ruby
require 'helper'
|
|
|
|
describe Pry do
|
|
describe "output failsafe" do
|
|
after do
|
|
Pry.config.print = Pry::DEFAULT_PRINT
|
|
end
|
|
|
|
it "should catch serialization exceptions" do
|
|
Pry.config.print = lambda { |*a| raise "catch-22" }
|
|
|
|
lambda {
|
|
mock_pry("1")
|
|
}.should.not.raise
|
|
end
|
|
|
|
it "should display serialization exceptions" do
|
|
Pry.config.print = lambda { |*a| raise "catch-22" }
|
|
|
|
mock_pry("1").should =~ /\(pry\) output error: #<RuntimeError: catch-22>/
|
|
end
|
|
|
|
it "should catch errors serializing exceptions" do
|
|
Pry.config.print = lambda do |*a|
|
|
raise Exception.new("catch-22").tap{ |e| class << e; def inspect; raise e; end; end }
|
|
end
|
|
|
|
mock_pry("1").should =~ /\(pry\) output error: failed to show result/
|
|
end
|
|
end
|
|
|
|
describe "DEFAULT_PRINT" do
|
|
it "should output the right thing" do
|
|
mock_pry("[1]").should =~ /^=> \[1\]/
|
|
end
|
|
|
|
it "should not include the =>" do
|
|
accumulator = StringIO.new
|
|
Pry.config.print.call(accumulator, [1])
|
|
accumulator.string.should == "\[1\]\n"
|
|
end
|
|
|
|
it "should not be phased by un-inspectable things" do
|
|
mock_pry("class NastyClass; undef pretty_inspect; end", "NastyClass.new").should =~ /#<NastyClass:0x.*?>/
|
|
end
|
|
end
|
|
|
|
describe "output suppression" do
|
|
before do
|
|
@t = pry_tester
|
|
end
|
|
it "should normally output the result" do
|
|
mock_pry("1 + 2").should == "=> 3\n\n"
|
|
end
|
|
|
|
it "should not output anything if the input ends with a semicolon" do
|
|
mock_pry("1 + 2;").should == "\n"
|
|
end
|
|
|
|
it "should output something if the input ends with a comment" do
|
|
mock_pry("1 + 2 # basic addition").should == "=> 3\n\n"
|
|
end
|
|
|
|
it "should not output something if the input is only a comment" do
|
|
mock_pry("# basic addition").should == "\n"
|
|
end
|
|
end
|
|
end
|