# File lib/mspec/matchers/base.rb, line 27
27:   def >(expected)
28:     unless @actual > expected
29:       SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
30:                             "to be greater than #{expected.pretty_inspect}")
31:     end
32:   end