Browse Source

Use sequence in `software_update` fabricator to allow multiple (#29438)

dariusk-working/4_3_0
Matt Jankowski 2 years ago committed by GitHub
parent
commit
14c65180df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      spec/fabricators/software_update_fabricator.rb

2
spec/fabricators/software_update_fabricator.rb

@ -1,7 +1,7 @@
# frozen_string_literal: true
Fabricator(:software_update) do
version '99.99.99'
version { sequence(:version) { |point| "99.99.#{point}" } }
urgent false
type 'patch'
end

Loading…
Cancel
Save