diff options
Diffstat (limited to 'spec/factories/uploads.rb')
-rw-r--r-- | spec/factories/uploads.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/factories/uploads.rb b/spec/factories/uploads.rb index cd75cbf8adf..008d9616216 100644 --- a/spec/factories/uploads.rb +++ b/spec/factories/uploads.rb @@ -6,6 +6,7 @@ FactoryBot.define do store ObjectStorage::Store::LOCAL mount_point :avatar secret nil + store ObjectStorage::Store::LOCAL # we should build a mount agnostic upload by default transient do @@ -28,6 +29,10 @@ FactoryBot.define do secret SecureRandom.hex end + trait :object_storage do + store ObjectStorage::Store::REMOTE + end + trait :namespace_upload do model { build(:group) } path { File.join(secret, filename) } |