diff options
author | elijah <elijah@riseup.net> | 2013-12-22 01:45:41 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-12-22 02:00:49 -0800 |
commit | 665964bcbba69829a4ff1e7d7bd936f90d49b3f7 (patch) | |
tree | bc5356220eaca2465bd135f45edf8000d6c254be /users/test/support | |
parent | 5bf1462140a7aa17ea815ccc5105ace6fa878d83 (diff) |
locale prefix support:
* set locale based on request header
* enforce locale path prefix when current locale is not the default
* note: don't use root_path anymore, instead use home_path
Diffstat (limited to 'users/test/support')
-rw-r--r-- | users/test/support/auth_test_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/test/support/auth_test_helper.rb b/users/test/support/auth_test_helper.rb index 50e9453..57f9f9b 100644 --- a/users/test/support/auth_test_helper.rb +++ b/users/test/support/auth_test_helper.rb @@ -27,7 +27,7 @@ module AuthTestHelper else if logged_in assert_equal({:alert => I18n.t(:not_authorized)}, flash.to_hash) - assert_redirected_to root_url + assert_redirected_to home_url else assert_equal({:alert => I18n.t(:not_authorized_login)}, flash.to_hash) assert_redirected_to login_url |