在 rspec 中指定查询字符串
我正在与第三方库集成,该库使用哈希验证查询字符串(要求保留查询字符串的顺序)。有没有办法将查询字符串文字传递给 rspec?
您可以在 TestUnit 中执行此操作,
@request.env['QUERY_STRING'] = 'this=is&in=order'
post :whatever
但是当您在 rspec 中执行此操作时,不会传递查询字符串(准确地说,该操作未找到任何参数)。
I'm integrating with a 3rd party library that validates the query string with a hash (requiring that the order of the query string be preserved). Is there a way to pass a query string literal to rspec?
You can do it in TestUnit with
@request.env['QUERY_STRING'] = 'this=is&in=order'
post :whatever
But when you do that in rspec, the query string is not passed (to be precise, the action finds no parameters).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你必须真正发布数据。
You have to really post the data.