summaryrefslogtreecommitdiff
path: root/spec/ruby/core/exception/range_error_spec.rb
blob: 9c0462bbf72a1b5cb9331fdcccf9f8ff6c9ae6cc (plain)
1
2
3
4
5
6
7
require File.expand_path('../../../spec_helper', __FILE__)

describe "RangeError" do
  it "is a superclass of FloatDomainError" do
    RangeError.should be_ancestor_of(FloatDomainError)
  end
end