extended_descriptions_controller_spec.rb 276 B

123456789101112131415
  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. describe Api::V1::Instances::ExtendedDescriptionsController do
  4. render_views
  5. describe 'GET #show' do
  6. it 'returns http success' do
  7. get :show
  8. expect(response).to have_http_status(200)
  9. end
  10. end
  11. end