From: Shaun McDonald Date: Mon, 6 Dec 2010 00:30:05 +0000 (+0000) Subject: Update expected GPS namespace in tests X-Git-Tag: live~6410^2^2~57 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/8e58ec0ff5329b7c2b9f88452ba2cf63090aa86c?ds=sidebyside;hp=42ef10ba80bf7ff13b4f9210e5fbf54538e0d52f Update expected GPS namespace in tests Update tests to expect the correct GPX namespace URL to reflect the change made in 7369b7427c3df17314cfa5e9f69bedd78f760047 ane make the tests pass again. --- diff --git a/test/functional/api_controller_test.rb b/test/functional/api_controller_test.rb index b4ac25cfe..098026a93 100644 --- a/test/functional/api_controller_test.rb +++ b/test/functional/api_controller_test.rb @@ -66,9 +66,8 @@ class ApiControllerTest < ActionController::TestCase maxlat = point.latitude+0.001 bbox = "#{minlon},#{minlat},#{maxlon},#{maxlat}" get :trackpoints, :bbox => bbox - #print @response.body assert_response :success - assert_select "gpx[version=1.0][creator=OpenStreetMap.org][xmlns=http://www.topografix.com/GPX/1/0/]:root", :count => 1 do + assert_select "gpx[version=1.0][creator=OpenStreetMap.org][xmlns=http://www.topografix.com/GPX/1/0]:root", :count => 1 do assert_select "trk" do assert_select "trkseg" end @@ -83,9 +82,8 @@ class ApiControllerTest < ActionController::TestCase maxlat = point.latitude+0.002 bbox = "#{minlon},#{minlat},#{maxlon},#{maxlat}" get :trackpoints, :bbox => bbox - #print @response.body assert_response :success - assert_select "gpx[version=1.0][creator=OpenStreetMap.org][xmlns=http://www.topografix.com/GPX/1/0/]:root", :count => 1 do + assert_select "gpx[version=1.0][creator=OpenStreetMap.org][xmlns=http://www.topografix.com/GPX/1/0]:root", :count => 1 do assert_select "trk", :count => 1 do assert_select "trk > trkseg", :count => 2 do |trksegs| trksegs.each do |trkseg| @@ -106,9 +104,8 @@ class ApiControllerTest < ActionController::TestCase maxlat = point.latitude+0.002 bbox = "#{minlon},#{minlat},#{maxlon},#{maxlat}" get :trackpoints, :bbox => bbox - #print @response.body assert_response :success - assert_select "gpx[version=1.0][creator=OpenStreetMap.org][xmlns=http://www.topografix.com/GPX/1/0/]:root", :count => 1 do + assert_select "gpx[version=1.0][creator=OpenStreetMap.org][xmlns=http://www.topografix.com/GPX/1/0]:root", :count => 1 do assert_select "trk", :count => 1 do assert_select "trk>name", :count => 1 assert_select "trk>desc", :count => 1