Sha256: cbf655b136b8be801ad5b76690cca0af62e1dd96a0be928c1671924c5eaceb1b
Contents?: true
Size: 344 Bytes
Versions: 11
Compression:
Stored size: 344 Bytes
Contents
FactoryBot.define do factory :topic do name { Faker::Lorem::sentence(3) } description { Faker::Lorem.paragraph(2) } slug { "mumuki/mumuki-sample-topic-#{SecureRandom.uuid}" } locale { :en } end factory :indexed_topic, parent: :topic do after(:build) do |topic| create(:chapter, topic: topic) end end end
Version data entries
11 entries across 11 versions & 2 rubygems