Sha256: 241551a15926cb7a430a32516207ca15e941f14ca006f81d25d545cdc9e5176d

Contents?: true

Size: 297 Bytes

Versions: 83

Compression:

Stored size: 297 Bytes

Contents

require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper'

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
end

Version data entries

83 entries across 83 versions & 1 rubygems

Version Path
rhodes-1.4.2 spec/framework_spec/app/spec/core/exception/set_backtrace_spec.rb
rhodes-1.4.1 spec/framework_spec/app/spec/core/exception/set_backtrace_spec.rb
rhodes-1.4.0 spec/framework_spec/app/spec/core/exception/set_backtrace_spec.rb