summaryrefslogtreecommitdiff
path: root/spec/ruby/core/rational/equal_value_spec.rb
blob: c6f7f4c6a29b623f410de7bcc6153296f0b2478e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require_relative "../../spec_helper"
require_relative '../../shared/rational/equal_value'

describe "Rational#==" do
  it_behaves_like :rational_equal_value, :==
end

describe "Rational#== when passed a Rational" do
  it_behaves_like :rational_equal_value_rat, :==
end

describe "Rational#== when passed a Float" do
  it_behaves_like :rational_equal_value_float, :==
end

describe "Rational#== when passed an Integer" do
  it_behaves_like :rational_equal_value_int, :==
end