manifests_controller_spec.rb 282 B

1234567891011121314151617
  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. describe ManifestsController do
  4. render_views
  5. describe 'GET #show' do
  6. before do
  7. get :show, format: :json
  8. end
  9. it 'returns http success' do
  10. expect(response).to have_http_status(200)
  11. end
  12. end
  13. end