Sha256: a7278a8087fc01500e540dc91e4580ade5ead559acaacee58369ef6e420a2797
Contents?: true
Size: 403 Bytes
Versions: 1
Compression:
Stored size: 403 Bytes
Contents
# frozen_string_literal: true require "spec_helper" describe GraphQL::Schema::Field do describe "graphql definition" do let(:object_class) { Jazz::Query } let(:field) { object_class.fields.find { |f| f.name == "find" } } it "uses the argument class" do arg_defn = field.graphql_definition.arguments.values.first assert_equal :ok, arg_defn.metadata[:custom] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
graphql-1.8.0.pre1 | spec/graphql/schema/field_spec.rb |