Skip to content

Commit

Permalink
removed checks on unit folder
Browse files Browse the repository at this point in the history
  • Loading branch information
eriqua committed Oct 23, 2023
1 parent 77339e9 commit fb77a0b
Showing 1 changed file with 0 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,26 +154,6 @@ Describe 'File/folder tests' -Tag 'Modules' {
$pathExisting | Should -Be $true
}
}

It '[<moduleFolderName>] Module should contain a [` tests/unit `] folder.' -TestCases $topLevelModuleTestCases {

param(
[string] $moduleFolderPath
)

$pathExisting = Test-Path (Join-Path -Path $moduleFolderPath 'tests' 'unit')
$pathExisting | Should -Be $true
}

It '[<moduleFolderName>] Module should contain a [` tests/unit/custom.tests.ps1 `] file.' -TestCases $topLevelModuleTestCases {

param (
[string] $moduleFolderPath
)

$pathExisting = Test-Path (Join-Path -Path $moduleFolderPath 'tests' 'unit' 'custom.tests.ps1')
$pathExisting | Should -Be $true
}
}
}

Expand Down

0 comments on commit fb77a0b

Please sign in to comment.