diff options
author | francis <francis> | 2007-10-09 17:12:10 +0000 |
---|---|---|
committer | francis <francis> | 2007-10-09 17:12:10 +0000 |
commit | e179ab8f5d516db42489f059255b475999fde9a0 (patch) | |
tree | 73162ba549ef466c0dd14fb27df578630adf4001 /test/functional/user_controller_test.rb | |
parent | 126745d92a315d9a45469697fcc25d099aa27237 (diff) |
Add primitive user page.
Diffstat (limited to 'test/functional/user_controller_test.rb')
-rw-r--r-- | test/functional/user_controller_test.rb | 18 |
1 files changed, 18 insertions, 0 deletions
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 |