after_build在FactoryGirl中运行2次

时间:2013-11-19 14:09:50

标签: ruby-on-rails-3 factory-bot rspec2

有我的模特:

class Profile < ActiveRecord::Base
  after_create do
    pp id
    track_activity
  end
end

这是我的事实:

 factory :user do 
    email {Factory.next :email}
    after_build do |user|
      user.profile_attributes = {name: 'why'}
    end
  end

id使用spec中的以下代码打印2次:

expect do
  user = create :user
end.to change(Activity, :count).by 1

0 个答案:

没有答案