]> git.openstreetmap.org Git - rails.git/blob - test/factories/social_link.rb
Bump eslint-formatter-compact from 8.40.0 to 9.0.1
[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