debian-mirror-gitlab/spec/factories/lfs_objects.rb

13 lines
314 B
Ruby
Raw Normal View History

2016-06-02 11:05:42 +05:30
include ActionDispatch::TestProcess
2015-11-26 14:37:03 +05:30
2018-03-17 18:26:18 +05:30
FactoryBot.define do
2015-11-26 14:37:03 +05:30
factory :lfs_object do
2017-08-17 22:00:37 +05:30
sequence(:oid) { |n| "b68143e6463773b1b6c6fd009a76c32aeec041faff32ba2ed42fd7f708a%05x" % n }
2015-11-26 14:37:03 +05:30
size 499013
end
trait :with_file do
file { fixture_file_upload(Rails.root + "spec/fixtures/dk.png", "`/png") }
end
end