debian-mirror-gitlab/spec/rubocop/cop/feature_flag_usage_spec.rb
2023-03-04 22:38:38 +05:30

55 lines
1.5 KiB
Ruby

# frozen_string_literal: true
require 'rubocop_spec_helper'
require_relative '../../../rubocop/cop/feature_flag_usage'
RSpec.describe RuboCop::Cop::FeatureFlagUsage, feature_category: :scalability do
let(:msg) { described_class::MSG }
context 'when calling Feature.enabled?' do
it 'registers offence' do
expect_offense(<<~PATTERN)
Feature.enabled?(:fflag)
^^^^^^^^^^^^^^^^^^^^^^^^ #{msg}
PATTERN
end
it 'registers offence when called with type parameter' do
expect_offense(<<~PATTERN)
Feature.enabled?(:fflag, type: :ops)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ #{msg}
PATTERN
end
it 'registers offence when called under global namespace' do
expect_offense(<<~PATTERN)
::Feature.enabled?(:fflag, type: :ops)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ #{msg}
PATTERN
end
end
context 'when calling Feature.disabled?' do
it 'registers offence' do
expect_offense(<<~PATTERN)
Feature.disabled?(:fflag)
^^^^^^^^^^^^^^^^^^^^^^^^^ #{msg}
PATTERN
end
it 'registers offence when called with type parameter' do
expect_offense(<<~PATTERN)
Feature.disabled?(:fflag, type: :ops)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ #{msg}
PATTERN
end
it 'registers offence when called under global namespace' do
expect_offense(<<~PATTERN)
::Feature.disabled?(:fflag, type: :ops)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ #{msg}
PATTERN
end
end
end