debian-mirror-gitlab/spec/models/concerns/taggable_queries_spec.rb
2021-11-11 11:23:49 +05:30

10 lines
244 B
Ruby

# 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