Rails 3 rspec +水豚 - current_path 为零?

发布于 2024-12-19 15:55:06 字数 366 浏览 1 评论 0原文

我的 users_spec.rb 中有这个

  scenario "Go to contact page" do
    visit "/contact"
    current_path.should == contact_path
  end

运行 rspec 后,我得到

Failure/Error: current_path.should == contact_path
       expected: "/contact"
            got: nil (using ==)

由于某种原因, current_path 似乎返回 nil 。是否有我缺少的配置?

I have this in my users_spec.rb

  scenario "Go to contact page" do
    visit "/contact"
    current_path.should == contact_path
  end

After running rspec, I get

Failure/Error: current_path.should == contact_path
       expected: "/contact"
            got: nil (using ==)

For some reason, current_path seem to be returning nil. Is there a configuration that I am missing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初相遇 2024-12-26 15:55:06

作者回答:

罗敏明

事实证明,因为 webrat 也包含在内,所以有某种
的冲突。我从我的 gem 文件中注释掉了我的 webrat(我
反正没用过)。它之前已包含在其他一些测试中
(也是由于许多过时的教程)。

Authors answer:

Min Ming Lo

It turns out that because webrat is also included, there was some sort
of conflict. I commented out my webrat from my gem file (which I
wasn't using anyway). It was included earlier for some other testing
(and also due to many outdated tutorials out there).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文