mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-14 11:11:38 -05:00
9 lines
194 B
Ruby
9 lines
194 B
Ruby
FactoryBot.define do
|
|
factory :trip do
|
|
name { "MyString" }
|
|
started_at { "2024-11-27 17:16:21" }
|
|
ended_at { "2024-11-27 17:16:21" }
|
|
notes { "MyText" }
|
|
user { nil }
|
|
end
|
|
end
|