Files
runner-images-PK/images/win/scripts/ImageHelpers/test/ImageHelpers.Tests.ps1
T

14 lines
299 B
PowerShell
Raw Normal View History

2019-11-15 15:23:41 -05:00
$ModuleManifestName = 'ImageHelpers.psd1'
$ModuleManifestPath = "$PSScriptRoot\..\$ModuleManifestName"
Describe 'Module Manifest Tests' {
It 'Passes Test-ModuleManifest' {
Test-ModuleManifest -Path $ModuleManifestPath | Should Not BeNullOrEmpty
$? | Should Be $true
}
}