# File lib/mspec/matchers/base.rb, line 34
34:   def >=(expected)
35:     unless @actual >= expected
36:       SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
37:                             "to be greater than or equal to #{expected.pretty_inspect}")
38:     end
39:   end