module RSpec::Core::MemoizedHelpers

def should(matcher=nil, message=nil)

Other tags:
    Note: - If you are using RSpec's newer expect-based syntax you may
    Note: - This only works if you are using rspec-expectations.

Other tags:
    See: #is_expected -
    See: #subject -
def should(matcher=nil, message=nil)
  enforce_value_expectation(matcher, 'should')
  RSpec::Expectations::PositiveExpectationHandler.handle_matcher(subject, matcher, message)
end