mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-09 22:28:04 -05:00
11 lines
164 B
Ruby
11 lines
164 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :export do
|
|
name { 'export' }
|
|
status { :created }
|
|
file_format { :json }
|
|
user
|
|
end
|
|
end
|