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.

19 lines
526 B

  1. require 'rails_helper'
  2. RSpec.describe Api::OEmbedController, type: :controller do
  3. render_views
  4. let(:alice) { Fabricate(:account, username: 'alice') }
  5. let(:status) { Fabricate(:status, text: 'Hello world', account: alice) }
  6. describe 'GET #show' do
  7. before do
  8. request.host = Rails.configuration.x.local_domain
  9. get :show, params: { url: short_account_status_url(alice, status) }, format: :json
  10. end
  11. it 'returns http success' do
  12. expect(response).to have_http_status(200)
  13. end
  14. end
  15. end