Files
growstuff/spec/factories/authentications.rb
2013-04-30 23:01:18 +10:00

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