mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
10 lines
242 B
Ruby
10 lines
242 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :track do
|
|
started_at { DateTime.new(2025, 1, 23, 15, 59, 55) }
|
|
ended_at { DateTime.new(2025, 1, 23, 16, 0, 0) }
|
|
user
|
|
path { 'LINESTRING(0 0, 1 1, 2 2)' }
|
|
end
|
|
end
|