Skip to content
Snippets Groups Projects
Commit da7f24c2 authored by Evan Minto's avatar Evan Minto
Browse files

Add test

parent 3fa5d059
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,16 @@ RSpec.describe AccountsController, type: :controller do
end
end
context 'activitystreams2' do
before do
get :show, params: { username: alice.username }, format: 'activitystreams2'
end
it 'returns http success with Activity Streams 2.0' do
expect(response).to have_http_status(:success)
end
end
context 'html' do
before do
get :show, params: { username: alice.username }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment