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

lfs_file_locks.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a676dabeff28e7b495250f4c4ea437c7364a4c93 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :lfs_file_lock do
    user
    project
    path { 'README.md' }
  end
end