summaryrefslogtreecommitdiff
path: root/spec/models/concerns/taggable_queries_spec.rb
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