| 12345678910111213 |
- # frozen_string_literal: true
- require 'rails_helper'
- RSpec.describe PokemonTradeSchema, type: :graphql do
- it 'has the base mutation' do
- expect(described_class.mutation).to eq ::Types::MutationType.to_graphql
- end
- it 'has the base query' do
- expect(described_class.query).to eq ::Types::QueryType.to_graphql
- end
- end
|