1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 01:11:12 +00:00

Fixed test error (#19851).

git-svn-id: http://svn.redmine.org/redmine/trunk@14359 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2015-06-20 10:57:01 +00:00
parent 752c414e8a
commit 1e674c903e

View File

@ -66,12 +66,13 @@ class AccountTest < Redmine::IntegrationTest
Redmine::Configuration.stubs(:[]).with('autologin_cookie_name').returns('custom_autologin')
Redmine::Configuration.stubs(:[]).with('autologin_cookie_path').returns('/')
Redmine::Configuration.stubs(:[]).with('autologin_cookie_secure').returns(false)
Redmine::Configuration.stubs(:[]).with('sudo_mode_timeout').returns(15)
with_settings :autologin => '7' do
assert_difference 'Token.count' do
post '/login', :username => 'admin', :password => 'admin', :autologin => 1
assert_response 302
end
assert_response 302
assert cookies['custom_autologin'].present?
token = cookies['custom_autologin']