]> source.dussan.org Git - redmine.git/commitdiff
code layout clean up test/integration/routing/repositories_test.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 2 May 2012 13:18:56 +0000 (13:18 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 2 May 2012 13:18:56 +0000 (13:18 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9611 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/integration/routing/repositories_test.rb

index ce8a2db89665eaebfd7e1e19c88d2f1ebf0ebb2d..0b0761ee600984a7c8a94326075036e32df6d3e6 100644 (file)
@@ -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