We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 245e547 commit 2aeb7a5Copy full SHA for 2aeb7a5
scripts/tests/Module/PSModule/PSModule.Tests.ps1
@@ -8,22 +8,6 @@ Param(
8
[string] $Path
9
)
10
11
-BeforeAll {
12
- LogGroup "Load module from path [$Path]" {
13
- $helperPath = "$PSScriptRoot/../../../helpers"
14
- Get-ChildItem -Path $helperPath -Filter '*.ps1' -Recurse | ForEach-Object {
15
- . $_.FullName
16
- }
17
-
18
- $moduleName = Split-Path -Path $Path -Leaf
19
- Write-Verbose "[$moduleName] - Processing" -Verbose
20
- $manifestFilePath = Join-Path -Path $Path "$moduleName.psd1"
21
22
- Write-Verbose " - Manifest file path: [$manifestFilePath]" -Verbose
23
- Resolve-PSModuleDependency -ManifestFilePath $manifestFilePath
24
25
-}
26
27
Describe 'PSModule - Module tests' {
28
Context 'Module' {
29
It 'The module should be importable' {
0 commit comments