Redmine/redmine/test/functional/welcome_controller_test.rb
Jean-Philippe Lang 6b7650e2f0 Initial commit
git-svn-id: http://redmine.rubyforge.org/svn/trunk@4 e93f8b46-1217-0410-a6f0-8f06a7374b81
2006-06-28 18:11:03 +00:00

19 lines
486 B
Ruby

require File.dirname(__FILE__) + '/../test_helper'
require 'welcome_controller'
# Re-raise errors caught by the controller.
class WelcomeController; def rescue_action(e) raise e end; end
class WelcomeControllerTest < Test::Unit::TestCase
def setup
@controller = WelcomeController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
end
# Replace this with your real tests.
def test_truth
assert true
end
end