X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/70448559b2c665f45d1716c30e7ae39e3226534b..d359cd70f1527b372b71c2f927e3f45fb0fcf509:/test/functional/changeset_controller_test.rb diff --git a/test/functional/changeset_controller_test.rb b/test/functional/changeset_controller_test.rb index 7a4d2e4f8..05f2ff569 100644 --- a/test/functional/changeset_controller_test.rb +++ b/test/functional/changeset_controller_test.rb @@ -45,7 +45,7 @@ class ChangesetControllerTest < ActionController::TestCase ) assert_routing( { :path => "/user/name/edits/feed", :method => :get }, - { :controller => "changeset", :action => "feed", :display_name => "name" } + { :controller => "changeset", :action => "feed", :display_name => "name", :format => :atom } ) assert_routing( { :path => "/browse/friends", :method => :get }, @@ -61,7 +61,7 @@ class ChangesetControllerTest < ActionController::TestCase ) assert_routing( { :path => "/browse/changesets/feed", :method => :get }, - { :controller => "changeset", :action => "feed" } + { :controller => "changeset", :action => "feed", :format => :atom } ) assert_recognizes( { :controller => "changeset", :action => "list" }, @@ -72,7 +72,7 @@ class ChangesetControllerTest < ActionController::TestCase { :path => "/history", :method => :get } ) assert_recognizes( - { :controller => "changeset", :action => "feed" }, + { :controller => "changeset", :action => "feed", :format => :atom }, { :path => "/history/feed", :method => :get } ) end