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

taggable_queries_spec.rb « concerns « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d248c4636e8dd4a804db08a4cb2d7fb50e19f16 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe TaggableQueries do
  it 'keeps MAX_TAGS_IDS in sync with TAGS_LIMIT' do
    expect(described_class::MAX_TAGS_IDS).to eq(Gitlab::Ci::Config::Entry::Tags::TAGS_LIMIT)
  end
end