Adds a view for editing all trackers fields.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10283 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2012-09-02 16:55:16 +00:00
parent 462c986452
commit 3a32edc3bd
6 changed files with 139 additions and 1 deletions
@@ -67,5 +67,13 @@ class RoutingTrackersTest < ActionController::IntegrationTest
{ :controller => 'trackers', :action => 'destroy',
:format => 'xml', :id => '1' }
)
assert_routing(
{ :method => 'get', :path => "/trackers/fields" },
{ :controller => 'trackers', :action => 'fields' }
)
assert_routing(
{ :method => 'post', :path => "/trackers/fields" },
{ :controller => 'trackers', :action => 'fields' }
)
end
end