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

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

FactoryBot.define do
  factory :project_daily_statistic do
    project
    fetch_count { 1 }
  end
end