12

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

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.0使用rails 3.0.5& rspec 2.5.1

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

4

1 回答 1

25

Aph,发现了我的问题。

我将我的路由规范文件夹命名spec/routesspec/routing,而不是应该是。

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

于 2011-03-10T17:55:48.893 回答