diff options
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/account_test.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/integration/account_test.rb b/test/integration/account_test.rb index 9f73be2c2..d50bb894e 100644 --- a/test/integration/account_test.rb +++ b/test/integration/account_test.rb @@ -76,6 +76,7 @@ class AccountTest < ActionController::IntegrationTest get "account/lost_password" assert_response :success assert_template "account/lost_password" + assert_select 'input[name=mail]' post "account/lost_password", :mail => 'jSmith@somenet.foo' assert_redirected_to "/login" @@ -88,6 +89,9 @@ class AccountTest < ActionController::IntegrationTest get "account/lost_password", :token => token.value assert_response :success assert_template "account/password_recovery" + assert_select 'input[type=hidden][name=token][value=?]', token.value + assert_select 'input[name=new_password]' + assert_select 'input[name=new_password_confirmation]' post "account/lost_password", :token => token.value, :new_password => 'newpass', :new_password_confirmation => 'newpass' assert_redirected_to "/login" |