mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
10 lines
165 B
Ruby
10 lines
165 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :export do
|
|
name { 'export' }
|
|
url { 'exports/export.json' }
|
|
status { 1 }
|
|
user
|
|
end
|
|
end
|