Skip to content

Instantly share code, notes, and snippets.

@katpadi
Created October 13, 2014 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save katpadi/87ba20bf2136072b3cc8 to your computer and use it in GitHub Desktop.
Save katpadi/87ba20bf2136072b3cc8 to your computer and use it in GitHub Desktop.
Sample FactoryGirl
FactoryGirl.define do
factory :my_awesome_task do
sequence(:title) do |n|
"#{Faker::Lorem.word}#{n}"
end
description 'Oxter'
content 'Buy milk at 5pm'
updated_at Time.now
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment