module DynportTools::HaveAttributesMatcher

Public Instance Methods

exactly_have_attributes(expected) click to toggle source
# File lib/dynport_tools/have_attributes.rb, line 65
def exactly_have_attributes(expected)
  have_all_attributes(expected)
end
have_all_attributes(expected) click to toggle source
# File lib/dynport_tools/have_attributes.rb, line 69
def have_all_attributes(expected)
  HaveAllAttributes.new(expected)
end
have_attributes(expected) click to toggle source
# File lib/dynport_tools/have_attributes.rb, line 61
def have_attributes(expected)
  HaveAttributes.new(expected)
end
have_one_with_attributes(expected) click to toggle source
# File lib/dynport_tools/have_attributes.rb, line 73
def have_one_with_attributes(expected)
  HaveOneWithAttributes.new(expected)
end
return_values(expected) click to toggle source
# File lib/dynport_tools/have_attributes.rb, line 57
def return_values(expected)
  ReturnValues.new(expected)
end