# File lib/mspec/matchers/base.rb, line 20
20:   def <=(expected)
21:     unless @actual <= expected
22:       SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
23:                             "to be less than or equal to #{expected.pretty_inspect}")
24:     end
25:   end