tests/unit/unit.tests.ps1
$DataFile = Import-PowerShellDataFile .\$($env:repoName).psd1 -ErrorAction SilentlyContinue $TestModule = Test-ModuleManifest .\$($env:repoName).psd1 -ErrorAction SilentlyContinue Describe "$($env:APPVEYOR_BUILD_FOLDER)-Manifest" { Context Validation { It "[Import-PowerShellDataFile] - $($env:repoName).psd1 is a valid PowerShell Data File" { $DataFile | Should Not BeNullOrEmpty } It "[Test-ModuleManifest] - $($env:repoName).psd1 should pass the basic test" { $TestModule | Should Not BeNullOrEmpty } Import-Module .\$($env:repoName).psd1 -ErrorAction SilentlyContinue $Module = Get-Module $($env:repoName) -ErrorAction SilentlyContinue 'DCBNetQosFlowControl', 'DCBNetAdapterQos', 'DCBNetQosDcbxSetting', 'DCBNetQosTrafficClass', 'DCBNetQosPolicy' | ForEach-Object { It "Should have exported the DSC Resource: $_" { $_ -in $module.ExportedDSCResources | Should Be $true } } 'Test-FabricInfo', 'Get-FabricInfo', 'Enable-FabricInfo', 'Start-FabricCapture' | ForEach-Object { It "Should have an available command: $_" { $module.ExportedCommands.ContainsKey($_) | Should be $true } } } } |