Sha256: ec1740a5604d25399caabc6f2b14255de45ef77f6d1848d9765f1db96dcf09d1

Contents?: true

Size: 560 Bytes

Versions: 76

Compression:

Stored size: 560 Bytes

Contents

# frozen_string_literal: true
require "spec_helper"

describe GraphQL::StaticValidation::FragmentTypesExist do
  include StaticValidationHelpers

  let(:query_string) {"
    fragment on Cheese {
      id
      flavor
    }
  "}

  it "finds non-existent types on fragments" do
    assert_equal(1, errors.length)
    fragment_def_error = {
      "message"=>"Fragment definition has no name",
      "locations"=>[{"line"=>2, "column"=>5}],
      "fields"=>["fragment "],
    }
    assert_includes(errors, fragment_def_error, "on fragment definitions")
  end
end

Version data entries

76 entries across 76 versions & 1 rubygems

Version Path
graphql-1.8.18 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.17 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.16 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.15 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.14 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.13 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.12 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.9.0.pre1 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.11 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.10 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.9 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.8 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.7 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.6 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.5 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.4 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.3 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.2 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.1 spec/graphql/static_validation/rules/fragments_are_named_spec.rb
graphql-1.8.0 spec/graphql/static_validation/rules/fragments_are_named_spec.rb