From: Evan Minto Date: Mon, 6 Feb 2017 20:14:02 +0000 (-0800) Subject: Add test X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=da7f24c23827d9d4e8808367735f9ea6b050e6d8;p=mastodon.git Add test --- diff --git a/spec/controllers/accounts_controller_spec.rb b/spec/controllers/accounts_controller_spec.rb index 34f17a943..d2c93c707 100644 --- a/spec/controllers/accounts_controller_spec.rb +++ b/spec/controllers/accounts_controller_spec.rb @@ -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 }