mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-21 23:37:47 +00:00
9 lines
141 B
Ruby
9 lines
141 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :programming_language do
|
|
name { 'Ruby' }
|
|
color { '#123456' }
|
|
end
|
|
end
|