Enable Rubocop RSpec/MultipleDescribes (#23672)
parent
54318dcd6d
commit
7a3d4c3d4b
@ -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
|
||||||
|
Loading…
Reference in new issue