我有Rspec + Shoulda + FactoryGirl,並且在嘗試調用Shoulda的have_many或belong_to方法時收到以下錯誤。在 「驗證」 組,做工精細使用的所有早該方法: > NoMethodError in 'A Project
> associations should When you call a
> matcher in an example withou
我需要傳遞額外的參數給工廠女孩用於回調。像這樣的東西(但更復雜的真正): Factory.define :blog do |blog|
blog.name "Blah"
blog.after_create do |blog|
blog.posts += sample_posts
blog.save!
end
end
,然後用像這樣創建: F
我剛剛進入工廠女孩,我遇到了一個困難,我敢肯定應該更容易。我只是無法將文檔轉換成一個工作示例。 假設我有以下型號: class League < ActiveRecord::Base
has_many :teams
end
class Team < ActiveRecord::Base
belongs_to :league
has_many :players