diff options
author | Akihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp> | 2017-05-30 01:09:17 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-29 18:09:17 +0200 |
commit | 00dda99789268b1f81a086c6b4a7e89764e59cbd (patch) | |
tree | 4d120fcfde21262a10f9acad019e4f4e77ffd262 /spec | |
parent | 2e27ce3b61a21918b5cfcfcfea328c4225c12744 (diff) |
Spec Admin::ResetsController calls send_reset_password_instructions (#3354)
Diffstat (limited to 'spec')
-rw-r--r-- | spec/controllers/admin/resets_controller_spec.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/controllers/admin/resets_controller_spec.rb b/spec/controllers/admin/resets_controller_spec.rb index a0a77478e..a20a460bd 100644 --- 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) |