logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 6dd5eac7fc81f2283525f954db812d937153bcfc
parent: 968354923ec5063946d561e41194870ce37ec43a
Author: Matt Jankowski <mjankowski@thoughtbot.com>
Date:   Fri, 30 Jun 2017 07:43:34 -0400

Add controller spec for manifests controller (#4003)


Diffstat:

Aspec/controllers/manifests_controller_spec.rb19+++++++++++++++++++
1 file changed, 19 insertions(+), 0 deletions(-)

diff --git a/spec/controllers/manifests_controller_spec.rb b/spec/controllers/manifests_controller_spec.rb @@ -0,0 +1,19 @@ +require 'rails_helper' + +describe ManifestsController do + render_views + + describe 'GET #show' do + before do + get :show, format: :json + end + + it 'assigns @instance_presenter' do + expect(assigns(:instance_presenter)).to be_kind_of InstancePresenter + end + + it 'returns http success' do + expect(response).to have_http_status(:success) + end + end +end