Sha256: 6f9b08890158826e00d6deb61f34b70e573a5014d9a5090c27511ed69651b223
Contents?: true
Size: 381 Bytes
Versions: 10
Compression:
Stored size: 381 Bytes
Contents
require 'faker/name' require 'faker/lorem' FactoryGirl.define do factory :comment do author_name { Faker::Name.name } content { Faker::Lorem.paragraphs(1) } commentable { build(:product) } end factory :subcomment, class: 'Comment' do author_name { Faker::Name.name } content { Faker::Lorem.paragraphs(1) } commentable { build(:comment) } end end
Version data entries
10 entries across 10 versions & 1 rubygems