Sha256: 54df4349b095fa7efc2c5a6e57c6eee3a7aea6cbdc349d9cf8cb0466b2e78d4b
Contents?: true
Size: 329 Bytes
Versions: 7
Compression:
Stored size: 329 Bytes
Contents
FactoryGirl.define do factory :post do title "Title" end factory :vote, class: Neutral::Vote do association :voteable, factory: :post association :voter, factory: :user value { rand(0..1) } end factory :user do sequence :username do Faker::Name.name end password 'secret' end end
Version data entries
7 entries across 7 versions & 1 rubygems