Rails3中未定义的名称方法测试错误

时间:2010-10-28 21:58:35

标签: ruby-on-rails-3

通过Michael Hartl的RailsTutorial并遇到以下错误 - 即使我已将所有内容都跟随'T'。

1) UsersController GET 'index' for signed-in users should have an element for each user
Failure/Error: response.should have_selector("li", :content => user.name)
undefined method `name' for #<Array:0x000001032c07c8>

有没有其他人得到类似的错误并知道如何修复它?

我在第10章。

顺便说一下,当我尝试这个页面时,它可以完成它应该做的事情。只是RSpec中的测试失败了。

仅供参考,这是来自users_controller_spec.rb的相关测试代码

require 'spec_helper'

describe UsersController do
    render_views

    describe "GET 'index'" do

        describe "for non-signed-in users" do
            it "should deny access" do 
                get :index
                response.should redirect_to(signin_path)
                flash[:notice].should =~ /sign in/i
            end
        end

        describe "for signed-in users" do 

            before(:each) do 
                @user = test_sign_in(Factory(:user))
                second = Factory(:user, :email => "another@example.com")
                third = Factory(:user, :email => "another@example.net")

                @users = [@user, second, third]
            end

            it "should be successful" do 
                get :index
                response.should be_success
            end

            it "should have the right title" do 
                get :index
                response.should have_selector("title", :content => "All users")
            end

            it "should have an element for each user" do
                get :index
                @users.each do |user|
                    response.should have_selector("li", :content => user.name)
                end
            end
        end
    end

我的spec / spec_helper.rb文件如下所示:

require 'rubygems'
require 'spork'

Spork.prefork do
  # Loading more in this block will cause your tests to run faster. However, 
  # if you change any configuration or code from libraries loaded here, you'll
  # need to restart spork for it take effect.
  ENV["RAILS_ENV"] ||= 'test'
  unless defined?(Rails)
    require File.dirname(__FILE__) + "/../config/environment"
  end
  require 'rspec/rails'

  # Requires supporting files with custom matchers and macros, etc,
  # in ./support/ and its subdirectories.
  Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}

  Rspec.configure do |config|
    # == Mock Framework
    #
    # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
    #
    # config.mock_with :mocha
    # config.mock_with :flexmock
    # config.mock_with :rr
    config.mock_with :rspec

    config.fixture_path = "#{::Rails.root}/spec/fixtures"

    # If you're not using ActiveRecord, or you'd prefer not to run each of your
    # examples within a transaction, comment the following line or assign false
    # instead of true.
    config.use_transactional_fixtures = true

    ### Part of a Spork hack. See http://bit.ly/arY19y
    # Emulate initializer set_clear_dependencies_hook in 
    # railties/lib/rails/application/bootstrap.rb
    ActiveSupport::Dependencies.clear

    def test_sign_in(user)
        controller.sign_in(user)
    end

    def integration_sign_in(user)
        visit signin_path
        fill_in :email,             :with => user.email
        fill_in :password,          :with => user.password 
        click_button
    end    
  end
end

Spork.each_run do
end

2 个答案:

答案 0 :(得分:0)

您的 test_sign_in 方法似乎正在返回数组的实例而不是User对象。您是否在 test_sign_in 方法中明确返回用户对象?如果没有,看看在该方法中执行的最后一行,我感觉它的结果是一个数组。

答案 1 :(得分:0)

我解决了这个问题,答案可以在railstutorial官方论坛上找到。