FactoryGirl.define do factory :user do contact location end end FactoryGirl.define do factory :user do first_name { "John" } last_name { "Doe" } trait :with_location do location end end end