From ffdbf0562b5e93dfa4d60ca9e4817b1acf1806b0 Mon Sep 17 00:00:00 2001 From: francis Date: Mon, 3 Sep 2007 09:39:20 +0000 Subject: Make /admin URL work, and give link through to public body editor. Layout for admin pages. --- test/functional/admin_controller_test.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/functional/admin_controller_test.rb (limited to 'test/functional/admin_controller_test.rb') diff --git a/test/functional/admin_controller_test.rb b/test/functional/admin_controller_test.rb new file mode 100644 index 000000000..e44ac9423 --- /dev/null +++ b/test/functional/admin_controller_test.rb @@ -0,0 +1,18 @@ +require File.dirname(__FILE__) + '/../test_helper' +require 'admin_controller' + +# Re-raise errors caught by the controller. +class AdminController; def rescue_action(e) raise e end; end + +class AdminControllerTest < Test::Unit::TestCase + def setup + @controller = AdminController.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