gitlab-org--gitlab-foss/spec/factories/lfs_file_locks.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
136 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-02-07 13:00:53 +00:00
FactoryBot.define do
factory :lfs_file_lock do
user
project
path { 'README.md' }
2018-02-07 13:00:53 +00:00
end
end