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.

20 lines
464 B

12 years ago
after 'development:users' do
entrydns_org = Domain.find_by_name(Settings.host_domains.first)
User.all.each do |user|
Audit.as_user(user) do
20.times do
domain = Factory.build(:domain, :user => user)
domain.setup(FactoryGirl.generate(:email))
domain.save!
domain.soa_record.update_serial!
end
12 years ago
20.times do
Factory.create(:a, :user => user, :domain => entrydns_org)
end
12 years ago
end
end
end