Class: RSpec::GraphqlMatchers::AcceptArguments

Inherits:
BaseMatcher
  • Object
show all
Defined in:
lib/rspec/graphql_matchers/accept_arguments.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(expected_args) ⇒ AcceptArguments

Returns a new instance of AcceptArguments.



8
9
10
# File 'lib/rspec/graphql_matchers/accept_arguments.rb', line 8

def initialize(expected_args)
  @expected_args = expected_args
end

Instance Attribute Details

#actual_fieldObject (readonly)

Returns the value of attribute actual_field.



6
7
8
# File 'lib/rspec/graphql_matchers/accept_arguments.rb', line 6

def actual_field
  @actual_field
end

#expected_argsObject (readonly)

Returns the value of attribute expected_args.



6
7
8
# File 'lib/rspec/graphql_matchers/accept_arguments.rb', line 6

def expected_args
  @expected_args
end

Instance Method Details

#descriptionObject



25
26
27
# File 'lib/rspec/graphql_matchers/accept_arguments.rb', line 25

def description
  "accept arguments #{describe_arguments(expected_args)}"
end

#failure_messageObject



20
21
22
23
# File 'lib/rspec/graphql_matchers/accept_arguments.rb', line 20

def failure_message
  "expected field '#{member_name(actual_field)}' to accept arguments "\
  "#{describe_arguments(expected_args)}"
end

#matches?(actual_field) ⇒ Boolean

Returns:

  • (Boolean)


12
13
14
15
16
17
18
# File 'lib/rspec/graphql_matchers/accept_arguments.rb', line 12

def matches?(actual_field)
  @actual_field = actual_field

  @expected_args.all? do |arg_name, arg_type|
    matches_argument?(arg_name, arg_type)
  end
end