about summary refs log tree commit diff
path: root/spec/controllers/manifests_controller_spec.rb
diff options
context:
space:
mode:
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