about summary refs log tree commit diff
path: root/spec/controllers/manifests_controller_spec.rb
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-06-30 07:43:34 -0400
committerEugen Rochko <eugen@zeonfederated.com>2017-06-30 13:43:34 +0200
commit6dd5eac7fc81f2283525f954db812d937153bcfc (patch)
tree92f9e71c367ee551747202c23ee22cad59d24a08 /spec/controllers/manifests_controller_spec.rb
parent968354923ec5063946d561e41194870ce37ec43a (diff)
Add controller spec for manifests controller (#4003)
Diffstat (limited to 'spec/controllers/manifests_controller_spec.rb')
-rw-r--r--spec/controllers/manifests_controller_spec.rb19
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