]> git.openstreetmap.org Git - rails.git/blobdiff - test/controllers/swf_controller_test.rb
Moar tests!
[rails.git] / test / controllers / swf_controller_test.rb
index d7213133b9a809bd9b78a5ec519ff69aa5b667b9..6873d86e71d53a084f1c5035bd6558a30cc3eb43 100644 (file)
@@ -1,4 +1,4 @@
-require 'test_helper'
+require "test_helper"
 
 class SwfControllerTest < ActionController::TestCase
   ##
@@ -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