2012-09-15 17:50:15 -04:00
|
|
|
require 'helper'
|
|
|
|
|
|
|
|
describe "exit-all" do
|
2012-12-28 21:35:08 -05:00
|
|
|
before { @pry = Pry.new }
|
2012-09-15 17:50:15 -04:00
|
|
|
|
2012-12-28 21:35:08 -05:00
|
|
|
it "should break out of the repl and return nil" do
|
|
|
|
@pry.eval("exit-all").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 wth a user specified value" do
|
|
|
|
@pry.eval("exit-all 'message'").should.be.false
|
|
|
|
@pry.exit_value.should == "message"
|
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 if multiple bindings still on stack" do
|
|
|
|
["cd 1", "cd 2"].each { |line| @pry.eval(line).should.be.true }
|
|
|
|
@pry.eval("exit-all 'message'").should.be.false
|
|
|
|
@pry.exit_value.should == "message"
|
|
|
|
end
|
2012-09-15 17:50:15 -04:00
|
|
|
|
2012-12-28 21:35:08 -05:00
|
|
|
it "should have empty binding_stack after breaking out of the repl" do
|
|
|
|
["cd 1", "cd 2"].each { |line| @pry.eval(line).should.be.true }
|
|
|
|
@pry.eval("exit-all").should.be.false
|
|
|
|
@pry.binding_stack.should.be.empty
|
2012-09-15 17:50:15 -04:00
|
|
|
end
|
|
|
|
end
|