Farmbot-Web-App/spec/factories/devices.rb

11 lines
266 B
Ruby

# Read about factories at https://github.com/thoughtbot/factory_bot
require 'securerandom'
FactoryBot.define do
factory :device do
name { Haikunator.haikunate(1000) }
webcam_url { Faker::Company.logo }
timezone { Device::TIMEZONES.sample }
end
end