osem-fcy/spec/factories/difficulty_levels.rb

23 lines
469 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2021-02-20 09:57:27 -08:00
# == Schema Information
#
# Table name: difficulty_levels
#
# id :bigint not null, primary key
# color :string
# description :text
# title :string
# created_at :datetime
# updated_at :datetime
# program_id :integer
#
FactoryBot.define do
factory :difficulty_level do
title { 'Example Difficulty Level' }
description { 'Lorem Ipsum dolsum' }
color { '#ffffff' }
program
end
2014-06-30 17:07:53 +02:00
end