summaryrefslogtreecommitdiffstats
path: root/test/integration
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-07-07 17:55:54 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-07-07 17:55:54 +0000
commit6adf61fd02e519e8dce7b3e8d50042c38a1a0acf (patch)
tree2d0e73a56d6e2d11b22d88cf7c4f89843bf949e2 /test/integration
parent986ffb24343877a76b505363aa2dc836e16465f5 (diff)
downloadredmine-6adf61fd02e519e8dce7b3e8d50042c38a1a0acf.tar.gz
redmine-6adf61fd02e519e8dce7b3e8d50042c38a1a0acf.zip
Code cleanup.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9941 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/account_test.rb4
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"