Browse Source

Cover AccountFollowController more in spec (#3227)

closed-social-glitch-2
Akihiko Odaki 6 years ago
committed by Eugen Rochko
parent
commit
422e4d897b
1 changed files with 13 additions and 6 deletions
  1. +13
    -6
      spec/controllers/account_follow_controller_spec.rb

+ 13
- 6
spec/controllers/account_follow_controller_spec.rb View File

@ -7,16 +7,23 @@ describe AccountFollowController do
let(:alice) { Fabricate(:account, username: 'alice') }
describe 'POST #create' do
before do
sign_in(user)
end
let(:service) { double }
it 'redirects to account path' do
service = double
subject { post :create, params: { account_username: alice.username } }
before do
allow(FollowService).to receive(:new).and_return(service)
allow(service).to receive(:call)
end
it 'does not create for user who is not signed in' do
subject
expect(FollowService).not_to receive(:new)
end
post :create, params: { account_username: alice.username }
it 'redirects to account path' do
sign_in(user)
subject
expect(service).to have_received(:call).with(user.account, 'alice')
expect(response).to redirect_to(account_path(alice))

Loading…
Cancel
Save