FarmBot/Farmbot-Web-App

View on GitHub
spec/factories/wizard_step_results.rb

Summary

Maintainability
A
0 mins
Test Coverage
FactoryBot.define do
  factory :wizard_step_result do
    device
    slug { Faker::Games::Pokemon.name }
    outcome { Faker::Games::Pokemon.move }
    answer { (rand * 10) > 5 }
  end
end