From e195a2dff012c062a7dc7001cc56fd4de1b99317 Mon Sep 17 00:00:00 2001 From: AntonioTerceiro Date: Wed, 6 Feb 2008 21:59:52 +0000 Subject: [PATCH] ActionItem41: adding skeleton code for manage_communities --- app/controllers/my_profile/manage_communities_controller.rb | 2 ++ app/helpers/manage_communities_helper.rb | 2 ++ test/functional/manage_communities_controller_test.rb | 18 ++++++++++++++++++ 3 files changed, 22 insertions(+), 0 deletions(-) create mode 100644 app/controllers/my_profile/manage_communities_controller.rb create mode 100644 app/helpers/manage_communities_helper.rb create mode 100644 test/functional/manage_communities_controller_test.rb diff --git a/app/controllers/my_profile/manage_communities_controller.rb b/app/controllers/my_profile/manage_communities_controller.rb new file mode 100644 index 0000000..4322c6e --- /dev/null +++ b/app/controllers/my_profile/manage_communities_controller.rb @@ -0,0 +1,2 @@ +class ManageCommunitiesController < ApplicationController +end diff --git a/app/helpers/manage_communities_helper.rb b/app/helpers/manage_communities_helper.rb new file mode 100644 index 0000000..278cbc3 --- /dev/null +++ b/app/helpers/manage_communities_helper.rb @@ -0,0 +1,2 @@ +module ManageCommunitiesHelper +end diff --git a/test/functional/manage_communities_controller_test.rb b/test/functional/manage_communities_controller_test.rb new file mode 100644 index 0000000..26cf29d --- /dev/null +++ b/test/functional/manage_communities_controller_test.rb @@ -0,0 +1,18 @@ +require File.dirname(__FILE__) + '/../test_helper' +require 'manage_communities_controller' + +# Re-raise errors caught by the controller. +class ManageCommunitiesController; def rescue_action(e) raise e end; end + +class ManageCommunitiesControllerTest < Test::Unit::TestCase + def setup + @controller = ManageCommunitiesController.new + @request = ActionController::TestRequest.new + @response = ActionController::TestResponse.new + end + + # Replace this with your real tests. + def test_truth + assert true + end +end -- libgit2 0.21.2