0
0
Fork 0

Fixing more configuration issues with ActionCable

This commit is contained in:
Eugen Rochko 2016-08-18 18:39:35 +02:00
parent 5a8c149f6b
commit 8985f8e66c
4 changed files with 9 additions and 5 deletions

View file

@ -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