Class: RSpec::GraphqlMatchers::HaveAFieldMatchers::WithProperty

Inherits:
Object
  • Object
show all
Defined in:
lib/rspec/graphql_matchers/have_a_field_matchers/with_property.rb

Instance Method Summary collapse

Constructor Details

#initialize(expected_property_name) ⇒ WithProperty

Returns a new instance of WithProperty.



7
8
9
# File 'lib/rspec/graphql_matchers/have_a_field_matchers/with_property.rb', line 7

def initialize(expected_property_name)
  @expected_property_name = expected_property_name
end

Instance Method Details

#descriptionObject



11
12
13
# File 'lib/rspec/graphql_matchers/have_a_field_matchers/with_property.rb', line 11

def description
  "resolving with property `#{@expected_property_name}`"
end

#failure_messageObject



20
21
22
# File 'lib/rspec/graphql_matchers/have_a_field_matchers/with_property.rb', line 20

def failure_message
  "#{description}, but it was `#{@actual_property}`"
end

#matches?(actual_field) ⇒ Boolean

Returns:

  • (Boolean)


15
16
17
18
# File 'lib/rspec/graphql_matchers/have_a_field_matchers/with_property.rb', line 15

def matches?(actual_field)
  @actual_property = property(actual_field).to_sym
  @actual_property == @expected_property_name.to_sym
end