RSpec 2:“route_to”上出现 NoMethodError与 rspec-rails 一起?

发布于 2024-10-20 20:18:48 字数 1118 浏览 1 评论 0原文

我正在尝试运行此测试......

require 'spec_helper'

describe HomeController do

  describe 'boilerplate routes' do

    it "should route to '/about'" do
      { :get => "/about" }.should route_to(:controller => 'home', :action => 'show')
    end

  end

end

但它一直失败并显示以下错误消息:

1) HomeController boilerplate routes should route to '/about'
Failure/Error: { :get => "/about" }.should route_to(:controller => 'home', :action => 'show')
   NoMethodError:
      undefined method `route_to' for #<RSpec::Core::ExampleGroup::Nested_1::Nested_1:0x00000101499650>
   # ./spec/routes/home_routes_spec.rb:8:in `block (3 levels) in <top (required)>'

我正在使用 rspec-rails 2.5.0rails 3.0.5代码> & rspec 2.5.1。

我正在做我的代码,就像 rdocs 中所说的那样,尝试遵循 此示例代码...我做错了什么?帮助!

I'm trying to run this test...

require 'spec_helper'

describe HomeController do

  describe 'boilerplate routes' do

    it "should route to '/about'" do
      { :get => "/about" }.should route_to(:controller => 'home', :action => 'show')
    end

  end

end

... and it keeps failing with this error message:

1) HomeController boilerplate routes should route to '/about'
Failure/Error: { :get => "/about" }.should route_to(:controller => 'home', :action => 'show')
   NoMethodError:
      undefined method `route_to' for #<RSpec::Core::ExampleGroup::Nested_1::Nested_1:0x00000101499650>
   # ./spec/routes/home_routes_spec.rb:8:in `block (3 levels) in <top (required)>'

I'm using rspec-rails 2.5.0 with rails 3.0.5 & rspec 2.5.1.

I'm doing my code just like it says in the rdocs, trying to follow along with this example code... what am I doing wrong? Help!

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

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

发布评论

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

评论(1

错爱 2024-10-27 20:18:48

阿芙,发现我的问题了。

我的路由规范文件夹名为 spec/routes 而不是 spec/routing,它应该是这样。

自述文件中错过了这一点。

Aph, found my problem.

I had my routing spec folder named spec/routes instead of spec/routing, which it should be.

Missed that in the readme.

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