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