about summary refs log tree commit diff
path: root/spec/fabricators/account_identity_proof_fabricator.rb
blob: 94f40dfd6b7cdf31f4e7e88c8df51588cc980a4b (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(15)}" } }
  token { sequence(:token) { |i| "#{i}#{Faker::Crypto.sha1()*2}"[0..65] } }
  verified false
  live false
end