]> git.openstreetmap.org Git - rails.git/blob - test/factories/social_link.rb
Merge pull request #6465 from pablobm/xml-module-shenanigans
[rails.git] / test / factories / social_link.rb
1 # frozen_string_literal: true
2
3 FactoryBot.define do
4   factory :social_link do
5     sequence(:url) { |n| "https://test.com/#{n}" }
6     user
7   end
8 end