Renamed helpers to correspond to renamed Controller classes.
[merb_radiant.git] / lib / generators / extension_controller / templates / .svn / text-base / functional_test.rb.svn-base
blobbb3ae5629a0536cede3194e5075c5c1eae20486f
1 require File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../test_helper'
3 # Re-raise errors caught by the controller.
4 <%= class_name %>Controller.class_eval { def rescue_action(e) raise e end }
6 class <%= class_name %>ControllerTest < Test::Unit::TestCase
7   def setup
8     @controller = <%= class_name %>Controller.new
9     @request    = ActionController::TestRequest.new
10     @response   = ActionController::TestResponse.new
11   end
13   # Replace this with your real tests.
14   def test_truth
15     assert true
16   end
17 end