blob: 9a62e932cd0319b4bd1cb64676c4da6a9997f417 (
plain)
1
2
3
4
5
6
7
8
|
# Read about factories at http://github.com/thoughtbot/factory_girl
Factory.define :tenant do |f|
f.sequence(:name) { |n| "Tenant #{n}" }
f.association :country
f.association :language
# f.association :sip_domain
end
|