The code powering m.abunchtell.com https://m.abunchtell.com
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

16 líneas
409 B

  1. require 'rails_helper'
  2. describe 'the host-meta route' do
  3. it 'routes to correct place with xml format' do
  4. expect(get('/.well-known/host-meta')).
  5. to route_to('well_known/host_meta#show', format: 'xml')
  6. end
  7. end
  8. describe 'the webfinger route' do
  9. it 'routes to correct place with json format' do
  10. expect(get('/.well-known/webfinger')).
  11. to route_to('well_known/webfinger#show')
  12. end
  13. end