debian-mirror-gitlab/spec/graphql/types/limited_countable_connection_type_spec.rb
2022-07-23 20:15:48 +02:00

12 lines
266 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Types::LimitedCountableConnectionType do
it 'has the expected fields' do
expected_fields = %i[count page_info]
expect(described_class).to have_graphql_fields(*expected_fields)
end
end