22 lines
641 B
Ruby
22 lines
641 B
Ruby
include ActionDispatch::TestProcess
|
|
|
|
FactoryBot.define do
|
|
factory :lfs_object do
|
|
sequence(:oid) { |n| "b68143e6463773b1b6c6fd009a76c32aeec041faff32ba2ed42fd7f708a%05x" % n }
|
|
size 499013
|
|
end
|
|
|
|
trait :with_file do
|
|
file { fixture_file_upload("spec/fixtures/dk.png", "`/png") }
|
|
end
|
|
|
|
# The uniqueness constraint means we can't use the correct OID for all LFS
|
|
# objects, so the test needs to decide which (if any) object gets it
|
|
trait :correct_oid do
|
|
oid 'b804383982bb89b00e828e3f44c038cc991d3d1768009fc39ba8e2c081b9fb75'
|
|
end
|
|
|
|
trait :object_storage do
|
|
file_store { LfsObjectUploader::Store::REMOTE }
|
|
end
|
|
end
|