You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
443 B
19 lines
443 B
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :organization do
|
|
name "MyString"
|
|
slug "MyString"
|
|
email_address "MyString"
|
|
url "MyString"
|
|
year_founded 1
|
|
info "MyText"
|
|
logo "MyString"
|
|
avatar "MyString"
|
|
requires_approval false
|
|
secret_question "MyString"
|
|
secret_answer "MyString"
|
|
location_id 1
|
|
user_organization_replationship_id 1
|
|
end
|
|
end
|
|
|