2016-04-18 06:18:54 -04:00
|
|
|
FactoryGirl.define do
|
|
|
|
factory :personal_access_token do
|
|
|
|
user
|
|
|
|
token { SecureRandom.hex(50) }
|
|
|
|
name { FFaker::Product.brand }
|
|
|
|
revoked false
|
|
|
|
expires_at { 5.days.from_now }
|
2016-11-22 03:53:53 -05:00
|
|
|
scopes ['api']
|
2016-04-18 06:18:54 -04:00
|
|
|
end
|
|
|
|
end
|