FarmBot/Farmbot-Web-App

View on GitHub
spec/factories/weeds.rb

Summary

Maintainability
A
0 mins
Test Coverage
FactoryBot.define do
  factory :weed do
    radius { 1.5 }
    x { rand(1...550) }
    y { rand(1...550) }
    z { rand(1...550) }
    meta { ({}) }
    device
    pointer_type { "Weed" }
  end
end