diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-05-02 13:18:56 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-05-02 13:18:56 +0000 |
commit | 9be6dfbe106957818889449972321fb36ac377b6 (patch) | |
tree | c278839c06ae464c998c1c26f5a73e77e20cf014 /test/integration | |
parent | 38011c0fb11b098bb697ac850ea6aeeacbe0c056 (diff) | |
download | redmine-9be6dfbe106957818889449972321fb36ac377b6.tar.gz redmine-9be6dfbe106957818889449972321fb36ac377b6.zip |
code layout clean up test/integration/routing/repositories_test.rb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9611 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/routing/repositories_test.rb | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/test/integration/routing/repositories_test.rb b/test/integration/routing/repositories_test.rb index ce8a2db89..0b0761ee6 100644 --- a/test/integration/routing/repositories_test.rb +++ b/test/integration/routing/repositories_test.rb @@ -1,5 +1,5 @@ # Redmine - project management software -# Copyright (C) 2006-2011 Jean-Philippe Lang +# Copyright (C) 2006-2012 Jean-Philippe Lang # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -355,12 +355,14 @@ class RoutingRepositoriesTest < ActionController::IntegrationTest assert_routing( { :method => 'post', :path => "/projects/redmine/repository/revisions/123/issues" }, - { :controller => 'repositories', :action => 'add_related_issue', :id => 'redmine', :rev => '123' } + { :controller => 'repositories', :action => 'add_related_issue', + :id => 'redmine', :rev => '123' } ) assert_routing( { :method => 'delete', :path => "/projects/redmine/repository/revisions/123/issues/25" }, - { :controller => 'repositories', :action => 'remove_related_issue', :id => 'redmine', :rev => '123', :issue_id => '25' } + { :controller => 'repositories', :action => 'remove_related_issue', + :id => 'redmine', :rev => '123', :issue_id => '25' } ) end @@ -368,12 +370,14 @@ class RoutingRepositoriesTest < ActionController::IntegrationTest assert_routing( { :method => 'post', :path => "/projects/redmine/repository/foo/revisions/123/issues" }, - { :controller => 'repositories', :action => 'add_related_issue', :id => 'redmine', :repository_id => 'foo', :rev => '123' } + { :controller => 'repositories', :action => 'add_related_issue', + :id => 'redmine', :repository_id => 'foo', :rev => '123' } ) assert_routing( { :method => 'delete', :path => "/projects/redmine/repository/foo/revisions/123/issues/25" }, - { :controller => 'repositories', :action => 'remove_related_issue', :id => 'redmine', :repository_id => 'foo', :rev => '123', :issue_id => '25' } + { :controller => 'repositories', :action => 'remove_related_issue', + :id => 'redmine', :repository_id => 'foo', :rev => '123', :issue_id => '25' } ) end end |