mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-28 22:16:15 +10:00
8 lines
152 B
Ruby
8 lines
152 B
Ruby
FactoryGirl.define do
|
|
factory :group do
|
|
sequence(:name) { |n| "group#{n}" }
|
|
path { name.downcase.gsub(/\s/, '_') }
|
|
type 'Group'
|
|
end
|
|
end
|