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