10 lines
196 B
Ruby
10 lines
196 B
Ruby
|
|
FactoryBot.define do
|
||
|
|
factory :file_info do
|
||
|
|
association :releasable, factory: :acquired_media_release
|
||
|
|
|
||
|
|
filename "filename.txt"
|
||
|
|
content_type "text/plain"
|
||
|
|
byte_size 1_000
|
||
|
|
end
|
||
|
|
end
|