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

Version Path
iord-1.2.2 test/factories/comment.rb
iord-1.2.1 test/factories/comment.rb
iord-1.2.0 test/factories/comment.rb
iord-1.1.3 test/factories/comment.rb
iord-1.1.2 test/factories/comment.rb
iord-1.1.1 test/factories/comment.rb
iord-1.1.0 test/factories/comment.rb
iord-1.0.3 test/factories/comment.rb
iord-1.0.2 test/factories/comment.rb
iord-1.0.1 test/factories/comment.rb