+
+ ##
+ # test all routes which lead to this controller
+ def test_routes
+ assert_routing(
+ { :path => "/export/start", :method => :get },
+ { :controller => "export", :action => "start" }
+ )
+ assert_routing(
+ { :path => "/export/finish", :method => :post },
+ { :controller => "export", :action => "finish" }
+ )
+ assert_routing(
+ { :path => "/export/embed", :method => :get },
+ { :controller => "export", :action => "embed" }
+ )
+ end
+
+ ##
+ # test the start action