mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 17:51:39 -05:00
9 lines
149 B
Ruby
9 lines
149 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :place do
|
|
name { 'MyString' }
|
|
latitude { 1.5 }
|
|
longitude { 1.5 }
|
|
end
|
|
end
|