Commit e195a2dff012c062a7dc7001cc56fd4de1b99317
1 parent
b34f37ae
Exists in
master
and in
29 other branches
ActionItem41: adding skeleton code for manage_communities
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1305 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
3 changed files
with
22 additions
and
0 deletions
Show diff stats
app/controllers/my_profile/manage_communities_controller.rb
0 → 100644
... | ... | @@ -0,0 +1,18 @@ |
1 | +require File.dirname(__FILE__) + '/../test_helper' | |
2 | +require 'manage_communities_controller' | |
3 | + | |
4 | +# Re-raise errors caught by the controller. | |
5 | +class ManageCommunitiesController; def rescue_action(e) raise e end; end | |
6 | + | |
7 | +class ManageCommunitiesControllerTest < Test::Unit::TestCase | |
8 | + def setup | |
9 | + @controller = ManageCommunitiesController.new | |
10 | + @request = ActionController::TestRequest.new | |
11 | + @response = ActionController::TestResponse.new | |
12 | + end | |
13 | + | |
14 | + # Replace this with your real tests. | |
15 | + def test_truth | |
16 | + assert true | |
17 | + end | |
18 | +end | ... | ... |