mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-15 21:39:00 +00:00
10 lines
136 B
Ruby
10 lines
136 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :lfs_file_lock do
|
|
user
|
|
project
|
|
path { 'README.md' }
|
|
end
|
|
end
|