module RSpec::Matchers
Public Instance Methods
graphql_have_attributes(key, expected)
click to toggle source
# File lib/rspec/graphql_assistant/matchers.rb, line 7 def graphql_have_attributes(key, expected) RSpec::GraphqlAssistant::Matchers::HaveAttributes.new(key, expected) end
graphql_include(key, expected)
click to toggle source
# File lib/rspec/graphql_assistant/matchers.rb, line 3 def graphql_include(key, expected) RSpec::GraphqlAssistant::Matchers::Include.new(key, expected) end
graphql_match(key, expected)
click to toggle source
# File lib/rspec/graphql_assistant/matchers.rb, line 11 def graphql_match(key, expected) RSpec::GraphqlAssistant::Matchers::Match.new(key, expected) end