gitlab-org--gitlab-foss/spec/factories/time_tracking/timelog_categories.rb

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

10 lines
177 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :timelog_category, class: 'TimeTracking::TimelogCategory' do
namespace
name { generate(:name) }
end
end