Newer
Older
dmpopidor / spec / factories / themes.rb
@Bodacious Bodacious on 19 Oct 2018 411 bytes Update asset structure with webpacker gem
# == Schema Information
#
# Table name: themes
#
#  id          :integer          not null, primary key
#  description :text
#  locale      :string
#  title       :string
#  created_at  :datetime         not null
#  updated_at  :datetime         not null
#

FactoryBot.define do
  factory :theme do
    title { Faker::Lorem.sentence }
    description { Faker::Lorem.paragraph }
    locale { "en_GB" }
  end
end