mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
10 lines
224 B
Ruby
10 lines
224 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :import do
|
|
user
|
|
name { 'APRIL_2013.json' }
|
|
source { 1 }
|
|
raw_data { JSON.parse(File.read('spec/fixtures/files/owntracks/export.json')) }
|
|
end
|
|
end
|