12 lines
390 B
Ruby
12 lines
390 B
Ruby
|
require 'spec_helper'
|
||
|
|
||
|
describe 'graphql' do
|
||
|
let(:current_defn) { Api::V2::Schema.to_definition }
|
||
|
let(:printout_defn) { File.read(Rails.root.join('app', 'graphql', 'schema.graphql')) }
|
||
|
|
||
|
it "update the printed schema with `bin/rake graphql:schema:idl`" do
|
||
|
result = GraphQL::SchemaComparator.compare(current_defn, printout_defn)
|
||
|
expect(result.identical?).to be_truthy
|
||
|
end
|
||
|
end
|