我的轨道路线看起来像这样:
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? 有什么提示吗?