diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-17 21:25:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-18 03:25:47 +0100 |
commit | 7a3d4c3d4b2efa2df3f6238b7c9da240c29c8c54 (patch) | |
tree | 086358e7b97c680fe8edcd8e429cd7a7583607b8 /spec/routing | |
parent | 54318dcd6d4a22a24c5d8afb7c950bed43df3964 (diff) |
Enable Rubocop RSpec/MultipleDescribes (#23672)
Diffstat (limited to 'spec/routing')
-rw-r--r-- | spec/routing/well_known_routes_spec.rb | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/spec/routing/well_known_routes_spec.rb b/spec/routing/well_known_routes_spec.rb index 03a562843..747463351 100644 --- a/spec/routing/well_known_routes_spec.rb +++ b/spec/routing/well_known_routes_spec.rb @@ -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 |