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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/graphql/pagination/keyset/last_items_spec.rb')
-rw-r--r--spec/lib/gitlab/graphql/pagination/keyset/last_items_spec.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/spec/lib/gitlab/graphql/pagination/keyset/last_items_spec.rb b/spec/lib/gitlab/graphql/pagination/keyset/last_items_spec.rb
deleted file mode 100644
index 792cb03e8c7..00000000000
--- a/spec/lib/gitlab/graphql/pagination/keyset/last_items_spec.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe Gitlab::Graphql::Pagination::Keyset::LastItems do
- let_it_be(:merge_request) { create(:merge_request) }
-
- let(:scope) { MergeRequest.order_merged_at_asc }
-
- subject { described_class.take_items(*args) }
-
- context 'when the `count` parameter is nil' do
- let(:args) { [scope, nil] }
-
- it 'returns a single record' do
- expect(subject).to eq(merge_request)
- end
- end
-
- context 'when the `count` parameter is given' do
- let(:args) { [scope, 1] }
-
- it 'returns an array' do
- expect(subject).to eq([merge_request])
- end
- end
-end