Skip to content

Commit 4ae0d2c

Browse files
Merge pull request #1292 from puppetlabs/CAT-1601
2 parents 012c324 + b925020 commit 4ae0d2c

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

package-testing/spec/package/airgapped_usage_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
end
2929

3030
context 'when validating the module' do
31-
context 'with puppet 7.x' do
32-
puppet_version = '7.x'
31+
context 'with puppet 8.x' do
32+
puppet_version = '8.x'
3333
let(:ruby_version) { ruby_for_puppet(puppet_version) }
3434

3535
describe command("pdk validate --puppet-version=#{puppet_version}") do

package-testing/spec/package/support/spec_utils.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def ruby_for_puppet(pupver)
5252
when /^5\./ then '2.4.*'
5353
when /^6\./ then '2.5.*'
5454
when /^7\./ then '2.7.*'
55+
when /^8\./ then '3.2.*'
5556
end
5657

5758
return unless ruby_pattern

package-testing/spec/package/validate_a_new_module_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
end
1919

2020
context 'when validating the module' do
21-
context 'with puppet 7.x' do
22-
puppet_version = '7.x'
21+
context 'with puppet 8.x' do
22+
puppet_version = '8.x'
2323
let(:ruby_version) { ruby_for_puppet(puppet_version) }
2424

2525
describe command("pdk validate --puppet-version=#{puppet_version}") do

0 commit comments

Comments
 (0)