Skip to content

Instantly share code, notes, and snippets.

@rorlab
Last active January 1, 2016 21:59
Show Gist options
  • Save rorlab/8206662 to your computer and use it in GitHub Desktop.
Save rorlab/8206662 to your computer and use it in GitHub Desktop.
require "faker"
FactoryGirl.define do
factory :post do
group
association :writer, factory: :user
content { Faker::Lorem.sentence }
factory :post_transactions do
after(:create) do |post|
create_list(:transaction, 4, post: post)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment