File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 21
21
end
22
22
end
23
23
24
- %w[ 7.3 .0 6.19.1 ] . each do |puppet_version |
24
+ %w[ 7.22 .0 6.29.0 ] . each do |puppet_version |
25
25
context "when requesting --puppet-version #{ puppet_version } " do
26
26
describe command ( "pdk validate --puppet-version #{ puppet_version } " ) do
27
27
its ( :exit_status ) { is_expected . to eq ( 0 ) }
34
34
end
35
35
end
36
36
37
- { '2019.8.4' => '6.19.1' } . each do |pe_version , puppet_version |
38
- context "when requesting --pe-version #{ pe_version } " do
37
+ # PE mapping test have been marked as pending due to an issue with concurrent-ruby versions in
38
+ # older Puppet gems. This is being tracked and will be resolved in a future version.
39
+ { '2021.7.1' => '7.20.0' } . each do |pe_version , puppet_version |
40
+ xcontext "when requesting --pe-version #{ pe_version } " do
39
41
describe command ( "pdk validate --pe-version #{ pe_version } " ) do
40
42
its ( :exit_status ) { is_expected . to eq ( 0 ) }
41
43
end
42
44
43
45
describe file ( 'Gemfile.lock' ) do
46
+ its ( :exit_status ) { is_expected . to eq ( 0 ) }
44
47
it { is_expected . to exist }
45
48
its ( :content ) { is_expected . to match ( %r{^\s +puppet \( #{ Regexp . escape ( puppet_version ) } (\) |-)}im ) }
46
49
end
You can’t perform that action at this time.
0 commit comments