Class: RSpec::GraphqlMatchers::HaveAFieldMatchers::WithMetadata

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

Instance Method Summary collapse

Constructor Details

#initialize(expected_metadata) ⇒ WithMetadata

Returns a new instance of WithMetadata.



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

def initialize()
  @expected_metadata = 
end

Instance Method Details

#descriptionObject



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

def description
  "with metadata `#{@expected_metadata}`"
end

#failure_messageObject



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

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

#matches?(actual_field) ⇒ Boolean

Returns:

  • (Boolean)


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

def matches?(actual_field)
  @actual_metadata = actual_field.
  actual_field. == @expected_metadata
end