diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-04-13 07:09:07 -0400 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-13 13:09:07 +0200 |
commit | 137100dcf38c0da0fe7044a4c92aa06eae02c420 (patch) | |
tree | 076df3ebecd214eaedf30b83bb7036ce63c140ec /spec/routing | |
parent | 3a9eb81a8006af0306e8abc54bd8aca8381eee25 (diff) |
Clean up well-known routes/controllers (#1649)
* Add request spec for host meta route returning xml * Add routing spec for xrd routes * Update well-known routes * Move webfinger and host-meta actions to their own controllers
Diffstat (limited to 'spec/routing')
-rw-r--r-- | spec/routing/well_known_routes_spec.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/spec/routing/well_known_routes_spec.rb b/spec/routing/well_known_routes_spec.rb new file mode 100644 index 000000000..9540c3de3 --- /dev/null +++ b/spec/routing/well_known_routes_spec.rb @@ -0,0 +1,15 @@ +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') + 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', format: 'json') + end +end |