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/finders/tags_finder_spec.rb')
-rw-r--r--spec/finders/tags_finder_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/finders/tags_finder_spec.rb b/spec/finders/tags_finder_spec.rb
index 70d79ced81d..0bf9b228c8a 100644
--- a/spec/finders/tags_finder_spec.rb
+++ b/spec/finders/tags_finder_spec.rb
@@ -175,6 +175,16 @@ RSpec.describe TagsFinder do
end
end
end
+
+ context 'pagination and search' do
+ let(:params) { { search: '1.1.1', per_page: 1 } }
+
+ it 'ignores the pagination for search' do
+ result = subject
+
+ expect(result.map(&:name)).to eq(%w(v1.1.1))
+ end
+ end
end
context 'when Gitaly is unavailable' do