Enable Rubocop RSpec/MultipleDescribes (#23672)
parent
92d606bc98
commit
24f4789d2b
@ -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…
Reference in new issue