Rails 3 和 Webrat:错误的重定向
我无法进行测试,因为有些东西没有真正起作用。
代码在这里: http://pastie.org/1506941
我得到了一个我想要的简单登录进行测试。但每次 webrat 对 /user_session 执行 POST 时,我都会在登录后访问 /account_finder (仅在未给出子域的情况下才会重定向)而不是目标控制器。
红宝石 1.9.2 导轨3.0.3 Webrat 0.7.3
有人能给我建议吗?
I can't do my tests because something is not really working.
The code is in this pastie here: http://pastie.org/1506941
i got a simple login which i want to test. But every time webrat does the POST to /user_session i get to /account_finder (which is only redirected if no subdomain is given) instead of the target controller after a login.
Ruby 1.9.2
Rails 3.0.3
Webrat 0.7.3
Can someone give me an advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许不是最好的解决方案,但我现在正在使用黄瓜。它在那里工作。
Maybe not the best solution, but I'm using cucumber now. It is working there.