mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
13 lines
245 B
Ruby
13 lines
245 B
Ruby
# frozen_string_literal: true
|
|
|
|
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' }
|
|
status { 'suggested' }
|
|
end
|
|
end
|