- # Replace this with your real tests.
- def test_start
- xhr :get, :start
- assert_response :success
- assert_template 'start'
+
+ ##
+ # test all routes which lead to this controller
+ def test_routes
+ assert_routing(
+ { :path => "/export/finish", :method => :post },
+ { :controller => "export", :action => "finish" }
+ )
+ assert_routing(
+ { :path => "/export/embed", :method => :get },
+ { :controller => "export", :action => "embed" }
+ )