FactoryGirl.define do factory :flyboy_task, class: Flyboy::Task do goal { FactoryGirl.create(:flyboy_goal) } title { "I-am-a-task#{Kernel.rand(0..9999)}" } description { "I-am-the-task-description_#{Kernel.rand(0..9999)}" } reminder "2013-08-27" term "2013-08-27" done false end end