X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/c933ff40da110253bc4c474d9c79c3a4ed98721d..469888b30ec666c4f5e11f0be42cab539b2a7ab4:/test/functional/site_controller_test.rb diff --git a/test/functional/site_controller_test.rb b/test/functional/site_controller_test.rb new file mode 100644 index 0000000..69b9348 --- /dev/null +++ b/test/functional/site_controller_test.rb @@ -0,0 +1,18 @@ +require File.dirname(__FILE__) + '/../test_helper' +require 'site_controller' + +# Re-raise errors caught by the controller. +class SiteController; def rescue_action(e) raise e end; end + +class SiteControllerTest < Test::Unit::TestCase + def setup + @controller = SiteController.new + @request = ActionController::TestRequest.new + @response = ActionController::TestResponse.new + end + + # Replace this with your real tests. + def test_truth + assert true + end +end