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/rubocop/cop/gitlab/avoid_feature_get_spec.rb')
-rw-r--r--spec/rubocop/cop/gitlab/avoid_feature_get_spec.rb32
1 files changed, 32 insertions, 0 deletions
diff --git a/spec/rubocop/cop/gitlab/avoid_feature_get_spec.rb b/spec/rubocop/cop/gitlab/avoid_feature_get_spec.rb
new file mode 100644
index 00000000000..b5017bebd28
--- /dev/null
+++ b/spec/rubocop/cop/gitlab/avoid_feature_get_spec.rb
@@ -0,0 +1,32 @@
+# frozen_string_literal: true
+
+require 'rubocop_spec_helper'
+
+require_relative '../../../../rubocop/cop/gitlab/avoid_feature_get'
+
+RSpec.describe RuboCop::Cop::Gitlab::AvoidFeatureGet do
+ let(:msg) { described_class::MSG }
+
+ subject(:cop) { described_class.new }
+
+ it 'bans use of Feature.ban' do
+ expect_offense(<<~RUBY)
+ Feature.get
+ ^^^ #{msg}
+ Feature.get(x)
+ ^^^ #{msg}
+ ::Feature.get
+ ^^^ #{msg}
+ ::Feature.get(x)
+ ^^^ #{msg}
+ RUBY
+ end
+
+ it 'ignores unrelated code' do
+ expect_no_offenses(<<~RUBY)
+ Namespace::Feature.get
+ Namespace::Feature.get(x)
+ Feature.remove(:x)
+ RUBY
+ end
+end