##// END OF EJS Templates
Show the project hierarchy in the drop down list for new membership on user administration screen....
Show the project hierarchy in the drop down list for new membership on user administration screen. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1401 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1167:87742f23edb3
r1386:7f8d959171c5
Show More
test_helper.rb
77 lines | 2.8 KiB | text/x-ruby | RubyLexer
Jean-Philippe Lang
v0.2.0...
r5 # redMine - project management software
# Copyright (C) 2006 Jean-Philippe Lang
#
# 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.
ENV["RAILS_ENV"] ||= "test"
Jean-Philippe Lang
Initial commit...
r2 require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
require 'test_help'
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 require File.expand_path(File.dirname(__FILE__) + '/helper_testcase')
Jean-Philippe Lang
Initial commit...
r2
class Test::Unit::TestCase
# Transactional fixtures accelerate your tests by wrapping each test method
# in a transaction that's rolled back on completion. This ensures that the
# test database remains unchanged so your fixtures don't have to be reloaded
# between every test method. Fewer database queries means faster tests.
#
# Read Mike Clark's excellent walkthrough at
# http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
#
# Every Active Record database supports transactions except MyISAM tables
# in MySQL. Turn off transactional fixtures in this case; however, if you
# don't care one way or the other, switching from MyISAM to InnoDB tables
# is recommended.
self.use_transactional_fixtures = true
# Instantiated fixtures are slow, but give you @david where otherwise you
# would need people(:david). If you don't want to migrate your existing
# test cases which use the @david style and don't mind the speed hit (each
# instantiated fixtures translates to a database query per test method),
# then set this back to true.
self.use_instantiated_fixtures = false
# Add more helper methods to be used by all tests here...
Jean-Philippe Lang
v0.2.0...
r5
def log_user(login, password)
get "/account/login"
Jean-Philippe Lang
0.3 unstable...
r10 assert_equal nil, session[:user_id]
Jean-Philippe Lang
v0.2.0...
r5 assert_response :success
assert_template "account/login"
Jean-Philippe Lang
Login field name changed to username (#755)....
r1167 post "/account/login", :username => login, :password => password
Jean-Philippe Lang
- new controller "myController"...
r60 assert_redirected_to "my/page"
Jean-Philippe Lang
0.3 unstable...
r10 assert_equal login, User.find(session[:user_id]).login
Jean-Philippe Lang
v0.2.0...
r5 end
Jean-Philippe Lang
Merged IssuesController change_status and add_note actions....
r1030
def test_uploaded_file(name, mime)
ActionController::TestUploadedFile.new(Test::Unit::TestCase.fixture_path + "/files/#{name}", mime)
end
Jean-Philippe Lang
Initial commit...
r2 end
Jean-Philippe Lang
file upload test now uses ActionController::TestUploadedFile...
r248
# ActionController::TestUploadedFile bug
# see http://dev.rubyonrails.org/ticket/4635
class String
def original_filename
"testfile.txt"
end
def content_type
"text/plain"
end
def read
self.to_s
end
Jean-Philippe Lang
Merged IssuesController change_status and add_note actions....
r1030 end