2

我正在尝试使用 Rails。这是我的第一个 Rails 应用程序,我正在对我们未来项目的评估过程中对其进行测试。我一直关注 railstutorial.org 到第 9 章,然后尝试自己继续。

使用 Rails 3.2.3、Ruby 1.9.3、Factory Girl 1.4.0 和 rspec 2.10.0。

我遇到的麻烦是客户--[has_many]-->用户关系。

运行测试时我无法通过的错误:

1) User 
     Failure/Error: let(:client) { FactoryGirl.create(:client) }
     NoMethodError:
       undefined method `user' for #<Client:0x000000045cbfa8>

规格/工厂.rb

FactoryGirl.define do
  factory :client do
    sequence(:company_name)  { |n| "Company #{n}" }
    sequence(:address) { |n| "#{n} Example Street"}   
    phone "0-123-456-7890"
  end

  factory :user do
    sequence(:name)  { |n| "Person #{n}" }
    sequence(:email) { |n| "person_#{n}@example.com"}   
    password "foobar"
    password_confirmation "foobar"
    client

    factory :admin do
      admin true
    end
  end

规格/模型/user_spec.rb

require 'spec_helper'

describe User do

  let(:client) { FactoryGirl.create(:client) }
  before { @user = client.users.build(name: "Example User", 
                        email: "user@example.com", 
                        password: "foobar", 
                        password_confirmation: "foobar") }

  subject { @user }

  it { should respond_to(:name) }
end

应用程序/控制器/clients_controller.rb

class ClientsController < ApplicationController
  def show
    @client = Client.find(params[:id])
  end

  def new
    @client = Client.new
    @client.users.build # Initializes an empty user to be used on new form
  end

  def create
    @client = Client.new(params[:client])
    if @client.save
      flash[:success] = "Welcome!"
      redirect_to @client
    else
      render 'new'
    end
  end
end

应用程序/控制器/users_controller.rb

class UsersController < ApplicationController
  .
  .
  .

  def new
     @user = User.new
  end

  .
  .
  .
end

应用程序/模型/user.rb

class User < ActiveRecord::Base
  belongs_to :client

  .
  .
  .
end

应用程序/模型/client.rb

class Client < ActiveRecord::Base 
  has_many :users, dependent: :destroy
  .
  .
  .

end

谢谢你的帮助 !

4

1 回答 1

2

在您调用的 user_spec 中client.users,但它出现在其他地方,客户端属于用户(单数)。如果是这样,请尝试以下操作:

FactoryGirl.define do
  factory :client do
    ...
    association :user
  end
end

describe User do
   let(:user) { FactoryGirl( ... ) }
   let(:client) { FactoryGirl(:client, :user => user) }
   subject { user }
   it { should respond_to(:name) }
end
于 2012-06-08T12:51:35.597 回答