projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Refactor the oauth integration test to avoid using user fixtures.
[rails.git]
/
test
/
factories
/
client_applications.rb
1
FactoryGirl.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