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:13:11 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-05-29 18:13:11 +0200
commit7bf2d6cb06570d84d96bbd2517da8b5e50d33309 (patch)
treed7f8406a26bf14bc9c024f2fe2ebdea8b5e3b21a /spec/controllers/auth
parent11e5c965c3934226b5238ba5d85776a36ed83a24 (diff)
Spec Auth::ConfirmationsController (#3348)
Diffstat (limited to 'spec/controllers/auth')
-rw-r--r--spec/controllers/auth/confirmations_controller_spec.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/controllers/auth/confirmations_controller_spec.rb b/spec/controllers/auth/confirmations_controller_spec.rb
new file mode 100644
index 000000000..cf7f91e52
--- /dev/null
+++ b/spec/controllers/auth/confirmations_controller_spec.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe Auth::ConfirmationsController, 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