blob: cb2f7ee6034699c6969f0ef9f7c80dc697d2b807 (
plain)
1
2
3
4
5
6
|
# Read about factories at http://github.com/thoughtbot/factory_girl
Factory.define :phone_number_range do |f|
f.name INTERNAL_EXTENSIONS
f.association :phone_number_rangeable, :factory => :tenant
end
|