X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9fb8f5a84bfa96a299dfd1457c185181f15835d8..766246a9605bfa61cba8c6ef63676c233d206813:/test/controllers/swf_controller_test.rb diff --git a/test/controllers/swf_controller_test.rb b/test/controllers/swf_controller_test.rb index aab339c4e..6873d86e7 100644 --- a/test/controllers/swf_controller_test.rb +++ b/test/controllers/swf_controller_test.rb @@ -9,4 +9,13 @@ class SwfControllerTest < ActionController::TestCase { :controller => "swf", :action => "trackpoints" } ) end + + ## + # basic test that trackpoints at least returns some sort of flash movie + def test_trackpoints + get :trackpoints, :xmin => 51, :xmax => 52, :ymin => -1, :ymax => 1, :baselong => 0, :basey => 0, :masterscale => 1 + assert_response :success + assert_equal "application/x-shockwave-flash", response.content_type + assert_match /^FWS/, response.body + end end