]> git.openstreetmap.org Git - rails.git/blob - test/factories/social_link.rb
Merge pull request #5932 from tomhughes/frozen-strings
[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