summaryrefslogtreecommitdiff
path: root/spec/ruby/fixtures/rational.rb
blob: d0d05d0437772faaacd3708a45711ce3b5e658bb (plain)
1
2
3
4
5
6
7
8
9
10
11
module RationalSpecs
  class SubNumeric < Numeric
    def initialize(value)
      @value = Rational(value)
    end

    def to_r
      @value
    end
  end
end