Fixing more configuration issues with ActionCable
This commit is contained in:
parent
5a8c149f6b
commit
8985f8e66c
4 changed files with 9 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
|||
require 'rails_helper'
|
||||
|
||||
RSpec.describe Api::SalmonController, type: :controller do
|
||||
let(:account) { Fabricate(:account, username: 'catsrgr8', user: Fabricate(:user)) }
|
||||
let(:account) { Fabricate(:user, account: Fabricate(:account, username: 'catsrgr8')).account }
|
||||
|
||||
before do
|
||||
stub_request(:get, "https://quitter.no/.well-known/host-meta").to_return(request_fixture('.host-meta.txt'))
|
||||
|
@ -16,6 +16,10 @@ RSpec.describe Api::SalmonController, type: :controller do
|
|||
post :update, params: { id: account.id }
|
||||
end
|
||||
|
||||
it 'contains XML in the request body' do
|
||||
expect(request.body.read).to be_a String
|
||||
end
|
||||
|
||||
it 'returns http success' do
|
||||
expect(response).to have_http_status(:success)
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue