From 8e58ec0ff5329b7c2b9f88452ba2cf63090aa86c Mon Sep 17 00:00:00 2001 From: Shaun McDonald Date: Mon, 6 Dec 2010 00:30:05 +0000 Subject: [PATCH] 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. --- test/functional/api_controller_test.rb | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) 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 -- 2.43.2