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/style/inline_disable_annotation_spec.rb')
-rw-r--r--spec/rubocop/cop/style/inline_disable_annotation_spec.rb46
1 files changed, 46 insertions, 0 deletions
diff --git a/spec/rubocop/cop/style/inline_disable_annotation_spec.rb b/spec/rubocop/cop/style/inline_disable_annotation_spec.rb
new file mode 100644
index 00000000000..a180c08d534
--- /dev/null
+++ b/spec/rubocop/cop/style/inline_disable_annotation_spec.rb
@@ -0,0 +1,46 @@
+# frozen_string_literal: true
+
+require 'rubocop_spec_helper'
+
+require_relative '../../../../rubocop/cop/style/inline_disable_annotation'
+
+RSpec.describe RuboCop::Cop::Style::InlineDisableAnnotation, feature_category: :shared do
+ it 'registers an offense' do
+ expect_offense(<<~RUBY)
+ # some other comment
+ abc = '1'
+ ['this', 'that'].each do |word|
+ next if something? # rubocop:disable Some/Cop, Another/Cop
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Inline disabling a cop needs to follow [...]
+ end
+ # rubocop:disable Some/Cop, Another/Cop - Bad comment
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Inline disabling a cop needs to follow [...]
+ # rubocop :todo Some/Cop Some other things
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Inline disabling a cop needs to follow [...]
+ # rubocop: disable Some/Cop, Another/Cop Some more stuff
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Inline disabling a cop needs to follow [...]
+ # rubocop:disable Some/Cop -- Good comment
+ if blah && this # some other comment about nothing
+ this.match?(/blah/) # rubocop:disable Some/Cop with a bad comment
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Inline disabling a cop needs to follow [...]
+ end
+ RUBY
+ end
+
+ it 'accepts correctly formatted comment' do
+ expect_no_offenses(<<~RUBY)
+ # some other comment
+ abc = '1'
+ ['this', 'that'].each do |word|
+ next if something? # rubocop:disable Some/Cop, Another/Cop -- Good comment
+ end
+ # rubocop:disable Some/Cop, Another/Cop -- Good comment
+ # rubocop :todo Some/Cop Some other things -- Good comment
+ # rubocop: disable Some/Cop, Another/Cop Some more stuff -- Good comment
+ # rubocop:disable Some/Cop -- Good comment
+ if blah && this # some other comment about nothing
+ this.match?(/blah/) # rubocop:disable Some/Cop -- Good comment
+ end
+ RUBY
+ end
+end