Files
growstuff/spec/factories/authentications.rb
2019-12-20 03:33:23 +00:00

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