Enable Rubocop RSpec/MultipleDescribes (#23672)

lolsob-rspec
Nick Schonning 2023-02-17 21:25:47 -05:00 committed by GitHub
parent 92d606bc98
commit 24f4789d2b
2 changed files with 11 additions and 14 deletions

View File

@ -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

View File

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