Sha256: b373c22d91e57e16562c2f87505e7b5bd88fbb14a34417e9493cd4377ee721c5
Contents?: true
Size: 535 Bytes
Versions: 52
Compression:
Stored size: 535 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) require File.expand_path('../fixtures/common', __FILE__) describe "Exception#set_backtrace" do it "allows the user to set the backtrace to any array" do err = RuntimeError.new err.set_backtrace ["unhappy"] err.backtrace.should == ["unhappy"] end it "allows the user to set the backtrace from a rescued exception" do bt = ExceptionSpecs::Backtrace.backtrace err = RuntimeError.new err.set_backtrace bt err.backtrace.should == bt end end
Version data entries
52 entries across 52 versions & 2 rubygems