This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-06-30 04:43:34 -07: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 12:35:07 -07:00
|
|
|
expect(response).to have_http_status(200)
|
2017-06-30 04:43:34 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|