Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Posh
0.1.5
Types/PSModuleInfo/get_Test.ps1
<#
.SYNOPSIS
Gets module tests
.DESCRIPTION
Gets Pester Tests located within a module.
#>
$this
|
Split-Path
|
Get-ChildItem
-Recurse
-Filter
*.tests.ps1
|
Select-Object
-Unique