2012-09-15 17:50:15 -04:00
|
|
|
require 'helper'
|
|
|
|
|
|
|
|
describe "exit" do
|
2012-12-28 21:35:08 -05:00
|
|
|
before { @pry = Pry.new(:target => :outer, :output => StringIO.new) }
|
|
|
|
|
|
|
|
it "should pop a binding" do
|
|
|
|
@pry.eval "cd :inner"
|
|
|
|
@pry.evaluate_ruby("self").should == :inner
|
|
|
|
@pry.eval "exit"
|
|
|
|
@pry.evaluate_ruby("self").should == :outer
|
2012-09-15 17:50:15 -04:00
|
|
|
end
|
|
|
|
|
2012-12-28 21:35:08 -05:00
|
|
|
it "should break out of the repl when binding_stack has only one binding" do
|
|
|
|
@pry.eval("exit").should.be.false
|
|
|
|
@pry.exit_value.should.be.nil
|
2012-09-15 17:50:15 -04:00
|
|
|
end
|
|
|
|
|
2012-12-28 21:35:08 -05:00
|
|
|
it "should break out of the repl and return user-given value" do
|
|
|
|
@pry.eval("exit :john").should.be.false
|
|
|
|
@pry.exit_value.should == :john
|
2012-09-15 17:50:15 -04:00
|
|
|
end
|
|
|
|
|
2012-12-28 21:35:08 -05:00
|
|
|
it "should break out of the repl even after an exception" do
|
|
|
|
@pry.eval "exit = 42"
|
|
|
|
@pry.output.string.should =~ /^SyntaxError/
|
|
|
|
@pry.eval("exit").should.be.false
|
2012-09-15 17:50:15 -04:00
|
|
|
end
|
|
|
|
end
|