diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-12-07 02:10:08 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-12-07 02:10:08 +0000 |
commit | 7c15737ff2b819de089ce77d9ba59192b2cdc578 (patch) | |
tree | 0aae93cf9258eb4189cfe74d0b53ef0ea1dec60e /test/functional/users_controller_test.rb | |
parent | dce3d904a70ca40e446d340aecae739d72079dd1 (diff) | |
download | redmine-7c15737ff2b819de089ce77d9ba59192b2cdc578.tar.gz redmine-7c15737ff2b819de089ce77d9ba59192b2cdc578.zip |
remove duplicate test from UsersControllerTest
git-svn-id: http://svn.redmine.org/redmine/trunk@12368 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/users_controller_test.rb')
-rw-r--r-- | test/functional/users_controller_test.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/functional/users_controller_test.rb b/test/functional/users_controller_test.rb index 9966790e3..c150fd0f2 100644 --- a/test/functional/users_controller_test.rb +++ b/test/functional/users_controller_test.rb @@ -33,12 +33,6 @@ class UsersControllerTest < ActionController::TestCase get :index assert_response :success assert_template 'index' - end - - def test_index - get :index - assert_response :success - assert_template 'index' assert_not_nil assigns(:users) # active users only assert_nil assigns(:users).detect {|u| !u.active?} |