]> git.openstreetmap.org Git - rails.git/blob - test/factories/client_applications.rb
Use Update and Register as actions, to be consistent with client_applications
[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