简体   繁体   English

我的控制器的rspec测试返回nil(+工厂女孩)

[英]rspec test of my controller returns nil (+factory girl)

I am learning tests with rspec and factory girl on Rails and I can't manage to make them work. 我正在与Rails上的rspec和工厂女孩一起学习测试,但我无法使其正常工作。

My User controller looks like this : 我的用户控制器如下所示:

class UsersController < ApplicationController
  def index
    @users = User.all.order(:first_name)
  end
end

and the tests : 和测试:

require 'spec_helper'

describe UsersController do

before(:each) do
    @user1 = FactoryGirl.create(:user, first_name: "B", last_name: "B", uid: "b")
    @user2 = FactoryGirl.create(:user, first_name: "A", last_name: "A", uid: "a")
end

describe "GET index" do     
    it "sets a list of users sorted by first name" do
        get :index
        assigns(:users).should == [@user2, @user1]
    end
end
end

But the tests returns the following : 但是测试返回以下内容:

UsersController GET index sets a list of users sorted by first name
Failure/Error: assigns(:users).should == [@user2, @user1]
expected: [#<User id: nil, email: nil, first_name: "A", last_name: "A", uid: "a", active: true, admin: false, created_at: nil, updated_at: nil, reset_date: nil>, #<User id: nil, email: nil, first_name: "B", last_name: "B", uid: "b", active: true, admin: false, created_at: nil, updated_at: nil, reset_date: nil>]
got: nil (using ==)
# ./spec/controllers/users_controller_spec.rb:13:in `block (3 levels) in <top (required)>'

Do you have any idea what I am doing wrong ? 你知道我在做什么错吗?

Cheers! 干杯!

Here is the 'rake routes' : 这是“耙路”:

      Prefix Verb   URI Pattern                        Controller#Action
        root GET    /                                  meetings#index
    meetings GET    /meetings(.:format)                meetings#index
       login GET    /login(.:format)                   sessions#new
      logout GET    /logout(.:format)                  sessions#destroy
             POST   /auth/:provider/callback(.:format) sessions#create
auth_failure GET    /auth/failure(.:format)            sessions#failure
       users GET    /users(.:format)                   users#index
             POST   /users(.:format)                   users#create
    new_user GET    /users/new(.:format)               users#new
   edit_user GET    /users/:id/edit(.:format)          users#edit
        user GET    /users/:id(.:format)               users#show
             PATCH  /users/:id(.:format)               users#update
             PUT    /users/:id(.:format)               users#update
             DELETE /users/:id(.:format)               users#destroy

As Jvnill said above, use create. 就像Jvnill所说的,使用create。 The other option is to use @user1.save after declaring them. 另一种选择是在声明它们后使用@ user1.save。

Also as far as routes go, check your resources in the routes file. 此外,就路线而言,请在路线文件中检查您的资源。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM