blob: 8cd75876e56600767d727a588137de1769071492 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
require_relative '../helper'
describe "exit" do
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
end
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
end
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
end
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
end
end
|