diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-06-28 18:11:03 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-06-28 18:11:03 +0000 |
commit | 6b7650e2f03156ea1e3985b30c1995e44c317e3d (patch) | |
tree | e56734d45ecc3725b77f3da1ede21294e49ec894 /redmine/test/functional/admin_controller_test.rb | |
parent | 73e0b8f8b3c9350018a7d8fda143dd9b8aa6f091 (diff) | |
download | redmine-6b7650e2f03156ea1e3985b30c1995e44c317e3d.tar.gz redmine-6b7650e2f03156ea1e3985b30c1995e44c317e3d.zip |
Initial commit
git-svn-id: http://redmine.rubyforge.org/svn/trunk@4 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'redmine/test/functional/admin_controller_test.rb')
-rw-r--r-- | redmine/test/functional/admin_controller_test.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/redmine/test/functional/admin_controller_test.rb b/redmine/test/functional/admin_controller_test.rb new file mode 100644 index 000000000..e44ac9423 --- /dev/null +++ b/redmine/test/functional/admin_controller_test.rb @@ -0,0 +1,18 @@ +require File.dirname(__FILE__) + '/../test_helper' +require 'admin_controller' + +# Re-raise errors caught by the controller. +class AdminController; def rescue_action(e) raise e end; end + +class AdminControllerTest < Test::Unit::TestCase + def setup + @controller = AdminController.new + @request = ActionController::TestRequest.new + @response = ActionController::TestResponse.new + end + + # Replace this with your real tests. + def test_truth + assert true + end +end |