about summary refs log tree commit diff
path: root/spec/fabricators/device_fabricator.rb
blob: b15d8248fb00091aedc7a625ade46101e5340a49 (plain) (blame)
1
2
3
4
5
6
7
8
Fabricator(:device) do
  access_token
  account
  device_id        { Faker::Number.number(digits: 5) }
  name             { Faker::App.name }
  fingerprint_key  { Base64.strict_encode64(Ed25519::SigningKey.generate.verify_key.to_bytes) }
  identity_key     { Base64.strict_encode64(Ed25519::SigningKey.generate.verify_key.to_bytes) }
end