We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcb058c commit 7fb58c3Copy full SHA for 7fb58c3
spec/rubocop/cop/rspec/base_spec.rb
@@ -1,6 +1,6 @@
1
# frozen_string_literal: true
2
3
-RSpec.describe RuboCop::Cop::RSpec::Base, :config do
+RSpec.describe RuboCop::Cop::RSpec::Base do
4
let(:cop_class) { RuboCop::RSpec::FakeCop }
5
let(:cop_config) { { 'Exclude' => %w[bar_spec.rb] } }
6
spec/rubocop/cop/rspec/instance_variable_spec.rb
-RSpec.describe RuboCop::Cop::RSpec::InstanceVariable, :config do
+RSpec.describe RuboCop::Cop::RSpec::InstanceVariable do
it 'flags an instance variable inside a describe' do
expect_offense(<<-RUBY)
describe MyClass do
0 commit comments