summaryrefslogtreecommitdiff
path: root/spec/factories/internal_ids.rb
blob: df5c5beeb424e28fa6f2ec0da42dbb74a155b61a (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :internal_id do
    project
    usage :issues
    last_value { project.issues.maximum(:iid) || 0 }
  end
end