黃金俠

Ruby on Rails / Rubygems / Javascript / Git

Factory Girl 的回呼 (callbacks)

| Comments

在寫測試中, 有許多的情境, 可能會需要在產生測試用資料後做許多處理, 因此 Factory Girl 本身也提供了 callback 機制…

1
2
3
4
5
6
7
8
9
10
FactoryGirl.define do
  factory :user do
    sequence(:email) { |n| "foo#{n}@bar.com" }
    name "barbar"
    password "12341234"
    after(:create) do |user|
      # callback code block here
    end
  end
end

詳細使用方式可見 官方說明文件

Comments