diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-06-30 07:43:34 -0400 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-06-30 13:43:34 +0200 |
commit | 6dd5eac7fc81f2283525f954db812d937153bcfc (patch) | |
tree | 92f9e71c367ee551747202c23ee22cad59d24a08 /spec/controllers | |
parent | 968354923ec5063946d561e41194870ce37ec43a (diff) |
Add controller spec for manifests controller (#4003)
Diffstat (limited to 'spec/controllers')
-rw-r--r-- | spec/controllers/manifests_controller_spec.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/controllers/manifests_controller_spec.rb b/spec/controllers/manifests_controller_spec.rb new file mode 100644 index 000000000..6f188fa35 --- /dev/null +++ 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 |