mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-06 08:27:47 -05:00
19 lines
357 B
Ruby
19 lines
357 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_bot
|
|
|
|
FactoryBot.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
|