mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
11 lines
183 B
Ruby
11 lines
183 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :area do
|
|
name { 'Adlershof' }
|
|
user
|
|
latitude { 52.437 }
|
|
longitude { 13.539 }
|
|
radius { 100 }
|
|
end
|
|
end
|