FarmBot/Farmbot-Web-App

View on GitHub
spec/factories/alerts.rb

Summary

Maintainability
A
0 mins
Test Coverage
FactoryBot.define do
  factory :alert do
    problem_tag { Alert::PROBLEM_TAGS.sample }
    priority { 100 }
    slug { SecureRandom.uuid }
    device
  end
end