]> git.openstreetmap.org Git - rails.git/blob - test/factories/friends.rb
Just pass the user object, rather than the display_name, to the user_path helper
[rails.git] / test / factories / friends.rb
1 FactoryBot.define do
2   factory :friend do
3     association :befriender, :factory => :user
4     association :befriendee, :factory => :user
5   end
6 end