Welcome to mirror list, hosted at ThFree Co, Russian Federation.

offset_active_record_relation_connection_spec.rb « pagination « graphql « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86f35de94ed27632f34e40e69cec24f165078d25 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Graphql::Pagination::OffsetActiveRecordRelationConnection do
  it 'subclasses from GraphQL::Relay::RelationConnection' do
    expect(described_class.superclass).to eq GraphQL::Pagination::ActiveRecordRelationConnection
  end
end