summaryrefslogtreecommitdiff
path: root/spec/factories/lfs_objects.rb
blob: 8eb709022ce97d23ea7c0e9fc24612b41b20eb5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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(Rails.root + "spec/fixtures/dk.png", "`/png") }
  end
end