debian-mirror-gitlab/spec/factories/programming_languages.rb

9 lines
141 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-11-18 11:00:15 +05:30
FactoryBot.define do
factory :programming_language do
2019-12-21 20:55:43 +05:30
name { 'Ruby' }
color { '#123456' }
2018-11-18 11:00:15 +05:30
end
end