logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

oembed_controller_spec.rb (544B)


  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: account_stream_entry_url(alice, status.stream_entry) }, format: :json
  10. end
  11. it 'returns http success' do
  12. expect(response).to have_http_status(:success)
  13. end
  14. end
  15. end