about summary refs log tree commit diff
path: root/spec/controllers/auth
diff options
context:
space:
mode:
authorAkihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp>2017-05-30 01:10:50 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-05-29 18:10:50 +0200
commita7f296162117013b6da752e6bf13409796ac5761 (patch)
tree6c743ec4e472cf45eacd6739f7871a8a1b0ff5c4 /spec/controllers/auth
parent00dda99789268b1f81a086c6b4a7e89764e59cbd (diff)
Spec Auth::PasswordsController (#3352)
Diffstat (limited to 'spec/controllers/auth')
-rw-r--r--spec/controllers/auth/passwords_controller_spec.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/controllers/auth/passwords_controller_spec.rb b/spec/controllers/auth/passwords_controller_spec.rb
new file mode 100644
index 000000000..60b225efa
--- /dev/null
+++ b/spec/controllers/auth/passwords_controller_spec.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe Auth::PasswordsController, type: :controller do
+  describe 'GET #new' do
+    it 'returns http success' do
+      @request.env['devise.mapping'] = Devise.mappings[:user]
+      get :new
+      expect(response).to have_http_status(:success)
+    end
+  end
+end