Enable Rubocop RSpec/MultipleDescribes (#23672)
This commit is contained in:
parent
54318dcd6d
commit
7a3d4c3d4b
2 changed files with 11 additions and 14 deletions
|
@ -1309,11 +1309,6 @@ RSpec/MissingExampleGroupArgument:
|
||||||
- 'spec/services/notify_service_spec.rb'
|
- 'spec/services/notify_service_spec.rb'
|
||||||
- 'spec/services/process_mentions_service_spec.rb'
|
- 'spec/services/process_mentions_service_spec.rb'
|
||||||
|
|
||||||
# Offense count: 1
|
|
||||||
RSpec/MultipleDescribes:
|
|
||||||
Exclude:
|
|
||||||
- 'spec/routing/well_known_routes_spec.rb'
|
|
||||||
|
|
||||||
# Offense count: 599
|
# Offense count: 599
|
||||||
RSpec/MultipleExpectations:
|
RSpec/MultipleExpectations:
|
||||||
Max: 19
|
Max: 19
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
require 'rails_helper'
|
require 'rails_helper'
|
||||||
|
|
||||||
|
describe 'Well Known routes' do
|
||||||
describe 'the host-meta route' do
|
describe 'the host-meta route' do
|
||||||
it 'routes to correct place with xml format' do
|
it 'routes to correct place with xml format' do
|
||||||
expect(get('/.well-known/host-meta'))
|
expect(get('/.well-known/host-meta'))
|
||||||
|
@ -13,3 +14,4 @@ describe 'the webfinger route' do
|
||||||
.to route_to('well_known/webfinger#show')
|
.to route_to('well_known/webfinger#show')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in a new issue