This website works better with JavaScript.
Home
Explore
Help
Sign In
jyt94
/
closedSocialMastodon
forked from
closed-social/mastodon
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Spec Auth::PasswordsController (
#3352
)
closed-social-v3
Akihiko Odaki
7 years ago
committed by
Eugen Rochko
parent
00dda99789
commit
a7f2961621
1 changed files
with
13 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+13
-0
spec/controllers/auth/passwords_controller_spec.rb
+ 13
- 0
spec/controllers/auth/passwords_controller_spec.rb
View File
@ -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
Write
Preview
Loading…
Cancel
Save