about summary refs log tree commit diff
path: root/spec/fabricators/account_identity_proof_fabricator.rb
blob: 7b932fa968792347974219f1b28536f67f8194ce (plain) (blame)
1
2
3
4
5
6
7
8
Fabricator(:account_identity_proof) do
  account
  provider 'keybase'
  provider_username { sequence(:provider_username) { |i| "#{Faker::Lorem.characters(number: 15)}" } }
  token { sequence(:token) { |i| "#{i}#{Faker::Crypto.sha1()*2}"[0..65] } }
  verified false
  live false
end