Use explicit config loading from bin/rubocop
(#33256)
This commit is contained in:
parent
ecdf4ea062
commit
c68eb82ffa
12 changed files with 13 additions and 30 deletions
|
@ -1,6 +0,0 @@
|
|||
inherit_from: ../../.rubocop.yml
|
||||
|
||||
# Anonymous controllers in specs cannot access `described_class`, explanation:
|
||||
# https://github.com/rubocop/rubocop-rspec/blob/v2.26.1/lib/rubocop/cop/rspec/described_class.rb#L36-L56
|
||||
RSpec/DescribedClass:
|
||||
SkipBlocks: true
|
|
@ -4,7 +4,7 @@ require 'rails_helper'
|
|||
|
||||
RSpec.describe AccountControllerConcern do
|
||||
controller(ApplicationController) do
|
||||
include AccountControllerConcern
|
||||
include AccountControllerConcern # rubocop:disable RSpec/DescribedClass
|
||||
|
||||
def success
|
||||
render plain: @account.username # rubocop:disable RSpec/InstanceVariable
|
||||
|
|
|
@ -4,7 +4,7 @@ require 'rails_helper'
|
|||
|
||||
RSpec.describe Api::RateLimitHeaders do
|
||||
controller(ApplicationController) do
|
||||
include Api::RateLimitHeaders
|
||||
include Api::RateLimitHeaders # rubocop:disable RSpec/DescribedClass
|
||||
|
||||
def show
|
||||
head 200
|
||||
|
|
|
@ -4,7 +4,7 @@ require 'rails_helper'
|
|||
|
||||
RSpec.describe ChallengableConcern do
|
||||
controller(ApplicationController) do
|
||||
include ChallengableConcern
|
||||
include ChallengableConcern # rubocop:disable RSpec/DescribedClass
|
||||
|
||||
before_action :require_challenge!
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ require 'rails_helper'
|
|||
|
||||
RSpec.describe Localized do
|
||||
controller(ApplicationController) do
|
||||
include Localized
|
||||
include Localized # rubocop:disable RSpec/DescribedClass
|
||||
|
||||
def success
|
||||
render plain: I18n.locale, status: 200
|
||||
|
|
|
@ -4,7 +4,7 @@ require 'rails_helper'
|
|||
|
||||
RSpec.describe PreloadingConcern do
|
||||
controller(ApplicationController) do
|
||||
include PreloadingConcern
|
||||
include PreloadingConcern # rubocop:disable RSpec/DescribedClass
|
||||
|
||||
def empty_array
|
||||
render plain: preload_collection([], Status).size
|
||||
|
|
|
@ -4,7 +4,7 @@ require 'rails_helper'
|
|||
|
||||
RSpec.describe Settings::ExportControllerConcern do
|
||||
controller(ApplicationController) do
|
||||
include Settings::ExportControllerConcern
|
||||
include Settings::ExportControllerConcern # rubocop:disable RSpec/DescribedClass
|
||||
|
||||
def index
|
||||
send_export_file
|
||||
|
|
|
@ -4,7 +4,7 @@ require 'rails_helper'
|
|||
|
||||
RSpec.describe UserTrackingConcern do
|
||||
controller(ApplicationController) do
|
||||
include UserTrackingConcern
|
||||
include UserTrackingConcern # rubocop:disable RSpec/DescribedClass
|
||||
|
||||
def show
|
||||
render plain: 'show'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue