forked from OCram85/PSCredentialStore
Marco Blessing
d4b00a5308
#### 📖 Summary - update Pester tests to Pester5+ compatiple layout - switch to dotnet base imaged - dotnet binary required for publishung powershell modules (Publish-Module) #### 📑 Test Plan > 💡 Select your test plan for the code changes. - [x] Tested via Drone.io pipeline - [ ] Custom test - [ ] No test plan ##### Details / Justification <!-- Add your test details or justification for missing tests here. --> #### 📚 Additional Notes <!-- A place for additional detail notes. --> Co-authored-by: OCram85 <marco.blessing@googlemail.com> Reviewed-on: OCram85/PSCredentialStore#59
13 lines
452 B
PowerShell
13 lines
452 B
PowerShell
Describe 'Test module meta' {
|
|
Context 'Default tests' -Tag 'Default' {
|
|
It 'Test manifest file' {
|
|
$ManifestFile = (Get-Item -Path "./src/*.psd1").FullName
|
|
Test-ModuleManifest -Path $ManifestFile | Should -Be $true
|
|
}
|
|
It 'Import Module' {
|
|
$ManifestFile = (Get-Item -Path "./src/*.psd1").FullName
|
|
{ Import-Module $ManifestFile } | Should -Not -Throw
|
|
}
|
|
}
|
|
}
|