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.

15 lines
276 B

  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