diff --git a/spec/controllers/auth/passwords_controller_spec.rb b/spec/controllers/auth/passwords_controller_spec.rb
new file mode 100644
index 0000000000000000000000000000000000000000..60b225efaed5065d278ee438fdff2c12e28cfa34
--- /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