diff options
author | francis <francis> | 2007-10-08 15:16:22 +0000 |
---|---|---|
committer | francis <francis> | 2007-10-08 15:16:22 +0000 |
commit | c3cf62e41b22605555df3cb5bbdcf64a331cff23 (patch) | |
tree | 9074d1d61f93e01070d2abd6bc6e5ebe4a75272a /test/functional/list_controller_test.rb | |
parent | 178002c0585d127c0286c9557b727d9c91ef92bf (diff) |
Actually store user id when making request.
/list URL displays all requests that are in progress.
Diffstat (limited to 'test/functional/list_controller_test.rb')
-rw-r--r-- | test/functional/list_controller_test.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/functional/list_controller_test.rb b/test/functional/list_controller_test.rb new file mode 100644 index 000000000..d347f44cb --- /dev/null +++ b/test/functional/list_controller_test.rb @@ -0,0 +1,18 @@ +require File.dirname(__FILE__) + '/../test_helper' +require 'list_controller' + +# Re-raise errors caught by the controller. +class ListController; def rescue_action(e) raise e end; end + +class ListControllerTest < Test::Unit::TestCase + def setup + @controller = ListController.new + @request = ActionController::TestRequest.new + @response = ActionController::TestResponse.new + end + + # Replace this with your real tests. + def test_truth + assert true + end +end |