mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-06 15:05:26 +08:00
13 lines
299 B
Ruby
13 lines
299 B
Ruby
|
FactoryGirl.define do
|
||
|
factory :asset do
|
||
|
association :created_by, factory: :project_user
|
||
|
association :team, factory: :team
|
||
|
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
|