有我的模特:
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