diff options
author | Rémy Coutable <remy@rymai.me> | 2018-10-11 19:10:42 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-10-15 14:28:03 +0200 |
commit | 02c47f2f73ac2d5a33b9a6c971668a38397b4910 (patch) | |
tree | b4e9120c8c2592529bbbee6683b926c483fddc3b /rubocop/qa_helpers.rb | |
parent | 63cd88c668130d22f4a3d708894d0283a5941319 (diff) | |
download | gitlab-ce-02c47f2f73ac2d5a33b9a6c971668a38397b4910.tar.gz |
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.rb | 11 |
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 |