gitlab-org--gitlab-foss/db/fixtures/development/05_users.rb
Dmitriy Zaporozhets 34f994b7c5
Improve dev fixtures
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-12-25 09:56:39 +02:00

15 lines
311 B
Ruby

Gitlab::Seeder.quiet do
(2..10).each do |i|
begin
User.seed(:id, [{
id: i,
username: Faker::Internet.user_name,
name: Faker::Name.name,
email: Faker::Internet.email,
}])
print '.'
rescue ActiveRecord::RecordNotSaved
print 'F'
end
end
end