##// END OF EJS Templates
Speeds up rendering of the project list for users who belong to hundreds of projects....
Speeds up rendering of the project list for users who belong to hundreds of projects. git-svn-id: http://svn.redmine.org/redmine/trunk@16123 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14856:cda9c63d9c21
r15741:f8df935dcada
Show More
users_test.rb
29 lines | 1.1 KiB | text/x-ruby | RubyLexer
Jean-Philippe Lang
Removes all #verify calls in controllers. Verification is handled at routing level now that the default route is removed....
r8941 # Redmine - project management software
Jean-Philippe Lang
Updates copyright for 2016....
r14856 # Copyright (C) 2006-2016 Jean-Philippe Lang
Jean-Philippe Lang
Removes all #verify calls in controllers. Verification is handled at routing level now that the default route is removed....
r8941 #
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../test_helper', __FILE__)
Jean-Philippe Lang
Moved helpers for integration tests in a specific class....
r13298 class UsersTest < Redmine::IntegrationTest
Jean-Philippe Lang
Add support for multiple email addresses per user (#4244)....
r13504 fixtures :users, :email_addresses
Jean-Philippe Lang
Removes all #verify calls in controllers. Verification is handled at routing level now that the default route is removed....
r8941
def test_destroy_should_not_accept_get_requests
assert_no_difference 'User.count' do
get '/users/destroy/2', {}, credentials('admin')
assert_response 404
end
end
end