导航Rails路由到功能测试

时间:2014-03-27 20:57:01

标签: ruby-on-rails functional-testing custom-routes

我的轨道路线看起来像这样:

resource :resource, path:':app_name', only:[] do
  post :get_x
  post :submit_x
end

我正在尝试像这样测试submit_x路线:

require 'test_helper'
class VerificationsControllerTest < ActionController::TestCase
  test "test" do
    post :resource, :app_name => 'app1', :submit_x
    assert_response :success
  end
end

如何编写命中的功能测试:submit_x? 有什么提示吗?

0 个答案:

没有答案