]> git.openstreetmap.org Git - rails.git/blob - test/factories/client_applications.rb
Bump osm-community-index from 5.5.2 to 5.5.3
[rails.git] / test / factories / client_applications.rb
1 FactoryBot.define do
2   factory :client_application do
3     sequence(:name) { |n| "Client application #{n}" }
4     sequence(:url) { |n| "http://example.com/app/#{n}" }
5
6     user
7   end
8 end