summaryrefslogtreecommitdiff
path: root/spec/ruby/core/float/shared/arithmetic_exception_in_coerce.rb
blob: eec92d858ffb726ccecb579f7e3bb3be99b9e58c (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../fixtures/classes'

describe :float_arithmetic_exception_in_coerce, shared: true do
  it "does not rescue exception raised in other#coerce" do
    b = mock("numeric with failed #coerce")
    b.should_receive(:coerce).and_raise(FloatSpecs::CoerceError)

    # e.g. 1.0 > b
    -> { 1.0.send(@method, b) }.should raise_error(FloatSpecs::CoerceError)
  end
end