aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/numeric/fixtures/classes.rb
blob: 1505584889c93e9b96d130122fa1e59fa354cfd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module NumericSpecs
  class Comparison < Numeric
    # This method is used because we cannot define
    # singleton methods on subclasses of Numeric,
    # which is needed for a.should_receive to work.
    def <=>(other)
      ScratchPad.record :numeric_comparison
      1
    end
  end

  class Subclass < Numeric
    # Allow methods to be mocked
    def singleton_method_added(val)
    end
  end
end