mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-10 16:54:38 -04:00
17 lines
304 B
Ruby
17 lines
304 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :authentication do
|
|
member
|
|
provider 'twitter'
|
|
uid 'foo'
|
|
secret 'bar'
|
|
name 'baz'
|
|
|
|
factory :flickr_authentication do
|
|
provider 'flickr'
|
|
uid 'blah@blah'
|
|
end
|
|
end
|
|
end
|