dawarich/spec/factories/places.rb

11 lines
198 B
Ruby
Raw Normal View History

2024-08-12 16:18:11 -04:00
# frozen_string_literal: true
2024-08-05 15:23:08 -04:00
FactoryBot.define do
factory :place do
2024-08-12 16:18:11 -04:00
name { 'MyString' }
latitude { 1.5 }
longitude { 1.5 }
2025-03-03 16:39:43 -05:00
lonlat { "POINT(#{longitude} #{latitude})" }
2024-08-05 15:23:08 -04:00
end
end