Sha256: 30492646630361b114b41b81f50287b3cd0883e2fbe0a81ae0996ce7609828a8
Contents?: true
Size: 851 Bytes
Versions: 2
Compression:
Stored size: 851 Bytes
Contents
require 'helper' describe "exit-all" do before { @pry = Pry.new } it "should break out of the repl and return nil" do @pry.eval("exit-all").should.be.false @pry.exit_value.should.be.nil end 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" end 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 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 end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pry-1.0.0.pre1-i386-mswin32 | spec/commands/exit_all_spec.rb |
pry-1.0.0.pre1-i386-mingw32 | spec/commands/exit_all_spec.rb |