You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
380 B
20 lines
380 B
7 years ago
|
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
|