mirror of
https://github.com/vale981/ray
synced 2025-03-10 13:26:39 -04:00
13 lines
299 B
PowerShell
13 lines
299 B
PowerShell
$ModuleManifestName = 'ImageHelpers.psd1'
|
|
$ModuleManifestPath = "$PSScriptRoot\..\$ModuleManifestName"
|
|
|
|
|
|
|
|
Describe 'Module Manifest Tests' {
|
|
It 'Passes Test-ModuleManifest' {
|
|
Test-ModuleManifest -Path $ModuleManifestPath | Should Not BeNullOrEmpty
|
|
$? | Should Be $true
|
|
}
|
|
}
|
|
|
|
|