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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-03-29 18:10:35 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-03-29 18:10:35 +0300
commit6407b5a4c13e34323d50ac3a39fda74e54d09306 (patch)
tree1461aebeda6e0b5359283a41381f780ab639f821 /rubocop
parent1a8b381312dc666a93c1bc3879ad15b1350de300 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'rubocop')
-rw-r--r--rubocop/cop/rspec/feature_category_on_shared_examples.rb45
1 files changed, 45 insertions, 0 deletions
diff --git a/rubocop/cop/rspec/feature_category_on_shared_examples.rb b/rubocop/cop/rspec/feature_category_on_shared_examples.rb
new file mode 100644
index 00000000000..acb2ae79d12
--- /dev/null
+++ b/rubocop/cop/rspec/feature_category_on_shared_examples.rb
@@ -0,0 +1,45 @@
+# frozen_string_literal: true
+
+require 'rubocop/cop/rspec/base'
+
+module RuboCop
+ module Cop
+ module RSpec
+ # Ensures that shared examples don't have feature category.
+ #
+ # @example
+ #
+ # # bad
+ # RSpec.shared_examples 'an external link with rel attribute', feature_category: :team_planning do
+ # end
+ #
+ # # good
+ # RSpec.shared_examples 'an external link with rel attribute' do
+ # end
+ #
+ # it 'adds rel="nofollow" to external links', feature_category: :team_planning do
+ # end
+ class FeatureCategoryOnSharedExamples < RuboCop::Cop::RSpec::Base
+ MSG = 'Shared examples should not have feature category set'
+
+ # @!method feature_category_value(node)
+ def_node_matcher :feature_category_value, <<~PATTERN
+ (block
+ (send #rspec? {#SharedGroups.all} ...
+ $(hash <(pair (sym :feature_category) _) ...>)
+ )
+ ...
+ )
+ PATTERN
+
+ def on_block(node)
+ value_node = feature_category_value(node)
+
+ return unless value_node
+
+ add_offense(value_node, message: MSG)
+ end
+ end
+ end
+ end
+end