dawarich/spec/factories/devices.rb
2025-08-05 22:06:34 +02:00

9 lines
160 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :device do
name { SecureRandom.uuid }
user
identifier { SecureRandom.uuid }
end
end