module RSpec::Core::HashImitatable

def to_h

def to_h
  hash = extra_hash_attributes.dup
  self.class.hash_attribute_names.each do |name|
    hash[name] = __send__(name)
  end
  hash
end