From e179ab8f5d516db42489f059255b475999fde9a0 Mon Sep 17 00:00:00 2001 From: francis Date: Tue, 9 Oct 2007 17:12:10 +0000 Subject: Add primitive user page. --- test/functional/user_controller_test.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/functional/user_controller_test.rb (limited to 'test/functional/user_controller_test.rb') diff --git a/test/functional/user_controller_test.rb b/test/functional/user_controller_test.rb new file mode 100644 index 000000000..b97a404ac --- /dev/null +++ b/test/functional/user_controller_test.rb @@ -0,0 +1,18 @@ +require File.dirname(__FILE__) + '/../test_helper' +require 'user_controller' + +# Re-raise errors caught by the controller. +class UserController; def rescue_action(e) raise e end; end + +class UserControllerTest < Test::Unit::TestCase + def setup + @controller = UserController.new + @request = ActionController::TestRequest.new + @response = ActionController::TestResponse.new + end + + # Replace this with your real tests. + def test_truth + assert true + end +end -- cgit v1.2.3