factory :user, aliases: [:author, :commenter] do first_name { "John" } last_name { "Doe" } date_of_birth { 18.years.ago } end
factory :postdo author # instead of # association :author, factory: :user title { "How to read a book effectively" } body { "There are five steps involved." } end
factory :commentdo commenter # instead of # association :commenter, factory: :user body { "Great article!" } end