Explorar el Código

Add controller spec for manifests controller (#4003)

master
Matt Jankowski hace 6 años
committed by Eugen Rochko
padre
commit
6dd5eac7fc
Se han modificado 1 ficheros con 19 adiciones y 0 borrados
  1. +19
    -0
      spec/controllers/manifests_controller_spec.rb

+ 19
- 0
spec/controllers/manifests_controller_spec.rb Ver fichero

@@ -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

Cargando…
Cancelar
Guardar