2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2018-09-03 20:44:39 +02:00
|
|
|
FactoryBot.define do
|
2014-05-19 12:24:48 +05:30
|
|
|
factory :difficulty_level do
|
2018-09-08 03:58:50 +02:00
|
|
|
title { 'Example Difficulty Level' }
|
|
|
|
|
description { 'Lorem Ipsum dolsum' }
|
|
|
|
|
color { '#ffffff' }
|
2015-10-25 13:29:02 +02:00
|
|
|
program
|
2014-05-19 12:24:48 +05:30
|
|
|
end
|
2014-06-30 17:07:53 +02:00
|
|
|
end
|