Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lfs_objects.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 477fab9e964d8c145e48e1032ac74541dbf64dd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
include ActionDispatch::TestProcess

FactoryGirl.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