# File lib/mspec/matchers/base.rb, line 61
61:   def <(expected)
62:     if @actual < expected
63:       SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
64:                             "not to be less than #{expected.pretty_inspect}")
65:     end
66:   end