2

我正在尝试为我正在开发的 Rails 应用程序构建一个基本的购物车。

没什么特别
的, - 购物车有很多 line_item
- 每个 line_item 都有关联的一个产品和一个数量

 class Cart < ActiveRecord::Base
   attr_accessible :line_items
   has_many :line_items, :dependent => :destroy
 end

 class LineItem < ActiveRecord::Base
   attr_accessible :quantity, :product

   belongs_to :cart
   has_one :product
 end

我正在尝试使用 RSpec 来测试这种关联,但我做错了,因为我收到一条错误消息:DEPRECATION WARNING: You're trying to create an attribute 'line_item_id'. Writing arbitrary attributes on a model is deprecated,我不知道为什么。

在我的 factory.rb 文件中,我将 line_item 工厂定义如下:

factory :line_item do
  quantity { Random.rand(1..5) }
  product
end

factory :cart do
  factory :cart_with_two_line_items do
    ignore do
      line_item_count 2
    end

    after(:create) do |cart, evaluator|
      FactoryGirl.create_list(:line_item, evaluator.line_item_count, cart_id: cart) # < 104
    end
  end
end

任何我出错的指针,它可能是基本的,但我对 Rspec 还是很陌生。提前致谢。

编辑:line_item_spec.rb

require 'spec_helper'

describe LineItem do
before do
  @line_item = FactoryGirl.create(:line_item)
end
4

1 回答 1

3

也许您忘记在 Product 模型中声明关联。

class Product < Activerecord::Base
  belongs_to :line_item

belongs_to 将期望您的产品表有一个列:line_item_id。您是否运行了迁移并修改了模型?

于 2012-06-19T15:12:56.793 回答