dawarich/spec/factories/stats.rb

21 lines
419 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
2024-03-23 15:29:55 -04:00
FactoryBot.define do
factory :stat do
year { 1 }
month { 1 }
2025-07-08 13:23:08 -04:00
distance { 1000 } # 1 km
2024-08-20 14:14:17 -04:00
user
toponyms do
[
{
'cities' => [
{ 'city' => 'Moscow', 'points' => 7, 'timestamp' => 1_554_317_696, 'stayed_for' => 1831 }
],
'country' => 'Russia'
}, { 'cities' => [], 'country' => nil }
]
end
2024-03-23 15:29:55 -04:00
end
end