dawarich/spec/factories/visits.rb

14 lines
245 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
2024-07-21 14:32:29 -04:00
FactoryBot.define do
factory :visit do
area
user
started_at { Time.zone.now }
ended_at { Time.zone.now + 1.hour }
duration { 1.hour }
name { 'Visit' }
2024-08-05 15:23:08 -04:00
status { 'suggested' }
2024-07-21 14:32:29 -04:00
end
end