blob: 2b4da7e5a58600b16e03f1a640bf36a7e3bd3368 (
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
|
describe "exit" do
before { @pry = Pry.new(target: :outer, output: StringIO.new) }
it "should pop a binding" do
@pry.eval "cd :inner"
expect(@pry.evaluate_ruby("self")).to eq :inner
@pry.eval "exit"
expect(@pry.evaluate_ruby("self")).to eq :outer
end
it "should break out of the repl when binding_stack has only one binding" do
expect(@pry.eval("exit")).to equal false
expect(@pry.exit_value).to equal nil
end
it "should break out of the repl and return user-given value" do
expect(@pry.eval("exit :john")).to equal false
expect(@pry.exit_value).to eq :john
end
it "should break out of the repl even after an exception" do
@pry.eval "exit = 42"
expect(@pry.output.string).to match(/^SyntaxError/)
expect(@pry.eval("exit")).to equal false
end
end
|