0
0
Fork 0

More coverage yes more even more (#2627)

* Add coverage for admin/confirmations controller

* Coverage for statuses controller show action

* Add coverage for admin/domain_blocks controller

* Add coverage for settings/profiles#update
This commit is contained in:
Matt Jankowski 2017-04-29 18:25:38 -04:00 committed by Eugen Rochko
parent 8325866c61
commit f48cb3eb17
6 changed files with 108 additions and 7 deletions

View file

@ -0,0 +1,16 @@
# frozen_string_literal: true
require 'rails_helper'
describe StatusesController do
render_views
describe '#show' do
it 'returns a success' do
status = Fabricate(:status)
get :show, params: { account_username: status.account.username, id: status.id }
expect(response).to have_http_status(:success)
end
end
end