rake routes:
api_v1_accounts GET /api/v1/accounts(.:format) {:action=>"index", :controller=>"api/v1/accounts"}
这意味着我应该有一个url helper方法:
api_v1_accounts_url
我正在尝试使用rspec测试创建帐户,但以下行失败:
route = api_v1_accounts_url(account)
说api_v1_accounts_url
是未定义的方法
我想我真的误解了一些关于URL帮助方法及其范围的内容。请帮忙
答案 0 :(得分:2)
include Rails.application.routes.url_helpers
这就是诀窍