dawarich/spec/factories/exports.rb

11 lines
164 B
Ruby
Raw Normal View History

2024-06-12 14:29:38 -04:00
# frozen_string_literal: true
FactoryBot.define do
factory :export do
name { 'export' }
status { :created }
file_format { :json }
2024-06-12 14:29:38 -04:00
user
end
end