0
0
Fork 0

Merge branch 'main' into glitch-soc/merge-upstream

Conflicts:
- `Gemfile.lock`:
  Upstream-updated lib textually too close to glitch-soc-only dep.
  Updated like upstream.
This commit is contained in:
Claire 2022-01-28 08:58:32 +01:00
commit b2915613fb
116 changed files with 241 additions and 221 deletions

View file

@ -49,7 +49,7 @@ describe ApplicationController, type: :controller do
it 'returns account if signed in' do
account = Fabricate(:account)
sign_in(Fabricate(:user, account: account))
sign_in(account.user)
expect(controller.view_context.current_account).to eq account
end
end
@ -168,13 +168,13 @@ describe ApplicationController, type: :controller do
end
it 'does nothing if user who signed in is not suspended' do
sign_in(Fabricate(:user, account: Fabricate(:account, suspended: false)))
sign_in(Fabricate(:account, suspended: false).user)
get 'success'
expect(response).to have_http_status(200)
end
it 'redirects to account status page' do
sign_in(Fabricate(:user, account: Fabricate(:account, suspended: true)))
sign_in(Fabricate(:account, suspended: true).user)
get 'success'
expect(response).to redirect_to(edit_user_registration_path)
end