2014-06-05 16:27:51 +05:30
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
|
|
|
|
|
FactoryGirl.define do
|
|
|
|
|
factory :organization do
|
|
|
|
|
name 'Example organization'
|
2014-06-05 16:43:55 +05:30
|
|
|
sequence(:website_url) { |n| "example#{n}@example.com" }
|
2014-06-05 16:27:51 +05:30
|
|
|
description 'Lorem Ipsum Dolor'
|
|
|
|
|
end
|
|
|
|
|
end
|