projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #4761 from AntonKhorev:dark-mode-with-close-button
[rails.git]
/
test
/
factories
/
oauth_applications.rb
1
FactoryBot.define do
2
factory :oauth_application, :class => "Oauth2Application" do
3
sequence(:name) { |n| "OAuth application #{n}" }
4
sequence(:redirect_uri) { |n| "https://example.com/app/#{n}" }
5
6
owner :factory => :user
7
end
8
end