mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-02 21:20:08 +08:00
3adf2bb736
Repositories, cells, columns, values (date, text, asset, list), rows, items
12 lines
239 B
Ruby
12 lines
239 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :asset do
|
|
file_file_name 'sample_file.txt'
|
|
file_content_type 'text/plain'
|
|
file_file_size 69
|
|
version 1
|
|
estimated_size 232
|
|
file_processing false
|
|
end
|
|
end
|