rspec - 失败/错误:@ users.should eq([user]) - 得到:[]而不是

时间:2013-03-23 02:03:50

标签: ruby testing rspec

规格:

require 'spec_helper'

describe UsersController do

  describe "GET index" do
    it "assigns @users" do
      user = User.create(:email => 'bob@test.com', :password=>'12', :password_confirmation=> '12')
      get :index
      assigns(:users).should eq([user])
    end

    it "renders the index template" do
      get :index
      response.should render_template("index")
    end
  end

end

代码:

class UsersController < ApplicationController
  def index
    @users=User.all
  end
end

错误:

Failures:

  1) UsersController GET index assigns @users
     Failure/Error: @users.should eq([user])

       expected: [#<User id: nil, email: "bob@test.com", encrypted_password: "$2a$04$JRFUhZxmw1jVCVRFx1bkIO9dpiJbVpbBhlXkGq.zbVyj...", reset_password_token: nil, reset_password_sent_at: nil, remember_created_at: nil, sign_in_count: 0, current_sign_in_at: nil, last_sign_in_at: nil, current_sign_in_ip: nil, last_sign_in_ip: nil, created_at: nil, updated_at: nil, admin: nil>]
            got: []

       (compared using ==)

2 个答案:

答案 0 :(得分:0)

问题是'12'的密码太短了。

答案 1 :(得分:0)

将来避免此问题的一种方法是使用工厂并包含工厂规格,以便您可以放心使用有效的物品。

Thoughtbot在this blog post中使用他们自己的FactoryGirl描述了一个很好的方法。我不是rake任务的忠实粉丝,但他们推荐的工厂规格非常有用。