scinote-web/spec/factories/assets.rb
2019-06-10 12:24:01 +02:00

15 lines
300 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :asset do
association :created_by, factory: :project_user
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