Sha256: a9e73484dbc1744857e77739dca030cc375da51c0f4cb4430e368a876bc58f92
Contents?: true
Size: 276 Bytes
Versions: 35
Compression:
Stored size: 276 Bytes
Contents
FactoryBot.define do factory :comment do content { Faker::Lorem.paragraph } factory :comment_recursive do comment_id { Comment.order('RANDOM()').first.id } end trait :random_user do user_id { User.order('RANDOM()').first.id } end end end
Version data entries
35 entries across 35 versions & 1 rubygems