Enable Rubocop RSpec/MultipleDescribes (#23672)

local
Nick Schonning 1 year ago committed by GitHub
parent 54318dcd6d
commit 7a3d4c3d4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      .rubocop_todo.yml
  2. 20
      spec/routing/well_known_routes_spec.rb

@ -1309,11 +1309,6 @@ RSpec/MissingExampleGroupArgument:
- 'spec/services/notify_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
RSpec/MultipleExpectations:
Max: 19

@ -1,15 +1,17 @@
require 'rails_helper'
describe 'the host-meta route' do
it 'routes to correct place with xml format' do
expect(get('/.well-known/host-meta'))
.to route_to('well_known/host_meta#show', format: 'xml')
describe 'Well Known routes' do
describe 'the host-meta route' do
it 'routes to correct place with xml format' do
expect(get('/.well-known/host-meta'))
.to route_to('well_known/host_meta#show', format: 'xml')
end
end
end
describe 'the webfinger route' do
it 'routes to correct place with json format' do
expect(get('/.well-known/webfinger'))
.to route_to('well_known/webfinger#show')
describe 'the webfinger route' do
it 'routes to correct place with json format' do
expect(get('/.well-known/webfinger'))
.to route_to('well_known/webfinger#show')
end
end
end

Loading…
Cancel
Save