logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 00dda99789268b1f81a086c6b4a7e89764e59cbd
parent: 2e27ce3b61a21918b5cfcfcfea328c4225c12744
Author: Akihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp>
Date:   Tue, 30 May 2017 01:09:17 +0900

Spec Admin::ResetsController calls send_reset_password_instructions (#3354)


Diffstat:

Mspec/controllers/admin/resets_controller_spec.rb4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/spec/controllers/admin/resets_controller_spec.rb b/spec/controllers/admin/resets_controller_spec.rb @@ -10,6 +10,10 @@ describe Admin::ResetsController do describe 'POST #create' do it 'redirects to admin accounts page' do + expect_any_instance_of(User).to receive(:send_reset_password_instructions) do |value| + expect(value.account_id).to eq account.id + end + post :create, params: { account_id: account.id } expect(response).to redirect_to(admin_accounts_path)