Skip to content

Commit

Permalink
(feat) - Add windows 2022 support to modules
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbreen28 committed Aug 15, 2024
1 parent ebc9d96 commit 1a95c10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ Describe 'Update-PuppetModuleMetadata' -Tag 'Unit' {
$Result.operatingsystem_support[0].operatingsystemrelease | Should -Contain '2012R2'
$Result.operatingsystem_support[0].operatingsystemrelease | Should -Contain '2016'
$Result.operatingsystem_support[0].operatingsystemrelease | Should -Contain '2019'
$Result.operatingsystem_support[0].operatingsystemrelease | Should -Contain '2022'
}
It 'Updates the Puppet lower bound' {
$Result.requirements[0].version_requirement | Should -Be '>= 7.0.0 < 9.0.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ function Update-PuppetModuleMetadata {
'2012',
'2012R2',
'2016',
'2019'
'2019',
'2022'
)
}
)
Expand Down

0 comments on commit 1a95c10

Please sign in to comment.