在功能测试中请求格式
如何在功能测试中设置请求格式?
我正在尝试执行以下操作:
get :show, :id => '1', :格式 => :xml
但这不起作用。
How do I set the request format in a functional test?
I'm trying to do something like:
get :show, :id => '1', :format => :xml
but that doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于某种原因,您不能在测试中使用符号来定义格式,您必须使用字符串版本。
For some reason you can't use symbols to define the format in tests, you must use the string version.