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:
authorRémy Coutable <remy@rymai.me>2018-10-11 20:10:42 +0300
committerRémy Coutable <remy@rymai.me>2018-10-15 15:28:03 +0300
commit02c47f2f73ac2d5a33b9a6c971668a38397b4910 (patch)
treeb4e9120c8c2592529bbbee6683b926c483fddc3b /rubocop/qa_helpers.rb
parent63cd88c668130d22f4a3d708894d0283a5941319 (diff)
Add a new QA::ElementWithPattern cop
This cop forbids the use of `element :foo, 'pattern'` and `element :bar, /pattern/` in QA files. Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'rubocop/qa_helpers.rb')
-rw-r--r--rubocop/qa_helpers.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/rubocop/qa_helpers.rb b/rubocop/qa_helpers.rb
new file mode 100644
index 00000000000..f4adf7f4e9f
--- /dev/null
+++ b/rubocop/qa_helpers.rb
@@ -0,0 +1,11 @@
+module RuboCop
+ # Module containing helper methods for writing QA cops.
+ module QAHelpers
+ # Returns true if the given node originated from the qa/ directory.
+ def in_qa_file?(node)
+ path = node.location.expression.source_buffer.name
+
+ path.start_with?(File.join(Dir.pwd, 'qa'))
+ end
+ end
+end