class RSpec::Matchers::BuiltIn::Have

def initialize(expected, relativity=:exactly)

def initialize(expected, relativity=:exactly)
  @expected = case expected
              when :no then 0
              when String then expected.to_i
              else expected
              end
  @relativity = relativity
  @actual = @collection_name = @plural_collection_name = nil
  @target_owns_a_collection = false
  @negative_expectation = false
  @expectation_format_method = "to"
end