2017-06-30 13:43:34 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe ManifestsController do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
|
|
|
before do
|
|
|
|
get :show, format: :json
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-06-30 13:43:34 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|