]> git.openstreetmap.org Git - rails.git/blob - test/factories/oauth_applications.rb
Add frozen_string_literal comments to ruby files
[rails.git] / test / factories / oauth_applications.rb
1 # frozen_string_literal: true
2
3 FactoryBot.define do
4   factory :oauth_application, :class => "Oauth2Application" do
5     sequence(:name) { |n| "OAuth application #{n}" }
6     sequence(:redirect_uri) { |n| "https://example.com/app/#{n}" }
7
8     owner :factory => :user
9   end
10 end