# File lib/mspec/matchers/base.rb, line 13
13:   def <(expected)
14:     unless @actual < expected
15:       SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
16:                             "to be less than #{expected.pretty_inspect}")
17:     end
18:   end