2010-10-28 47 views
1

通过Michael Hartl的RailsTutorial工作,发现以下错误 - 即使我已将所有内容都记录到了'T'。Rails3中未定义的名称方法测试错误

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中测试失败。

仅供参考,这里是从

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 => "[email protected]") 
       third = Factory(:user, :email => "[email protected]") 

       @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_helper.rb文件看起来像users_controller_spec.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 

回答

0

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

+0

这是test_sign_in'DEF test_sign_in(用户) \t controller.sign_in(用户)的定义 end' – marcamillion 2010-10-29 07:07:09

+0

在我看来,它返回一个普通对象,而不是阵列。鉴于我只是在学习,我可能会误会......但我是否正确?顺便说一句,我已更新我的帖子,以包含我的spec/spec_helper.rb文件的代码,以防您可以在那里找到任何线索。这就是我声明test_sign_in方法的地方。 – marcamillion 2010-10-29 07:18:24

相关问题