Skip to content

Remove extraneous import-module commands in tests #962

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Tests/Engine/CorrectionExtent.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
Import-Module PSScriptAnalyzer

Describe "Correction Extent" {
$type = [Microsoft.Windows.PowerShell.ScriptAnalyzer.Generic.CorrectionExtent]

Expand Down
11 changes: 1 addition & 10 deletions Tests/Engine/CustomizedRule.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@

# Check if PSScriptAnalyzer is already loaded so we don't
# overwrite a test version of Invoke-ScriptAnalyzer by
# accident
if (!(Get-Module PSScriptAnalyzer) -and !$testingLibraryUsage)
{
Import-Module PSScriptAnalyzer
}

$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$testRootDirectory = Split-Path -Parent $directory
Import-Module (Join-Path $testRootDirectory 'PSScriptAnalyzerTestHelper.psm1')

Expand Down
1 change: 0 additions & 1 deletion Tests/Engine/EditableText.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$testRootDirectory = Split-Path -Parent $directory

Import-Module PSScriptAnalyzer
Import-Module (Join-Path $testRootDirectory "PSScriptAnalyzerTestHelper.psm1")

$editableTextType = "Microsoft.Windows.PowerShell.ScriptAnalyzer.EditableText"
Expand Down
2 changes: 0 additions & 2 deletions Tests/Engine/Extensions.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$testRootDirectory = Split-Path -Parent $directory

Import-Module PSScriptAnalyzer
Import-Module (Join-Path $testRootDirectory "PSScriptAnalyzerTestHelper.psm1")

function Get-Extent {
Expand Down
4 changes: 1 addition & 3 deletions Tests/Engine/GetScriptAnalyzerRule.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@

$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
Import-Module -Verbose PSScriptAnalyzer
$testRootDirectory = Split-Path -Parent $directory
Import-Module (Join-Path $testRootDirectory 'PSScriptAnalyzerTestHelper.psm1')
$sa = Get-Command Get-ScriptAnalyzerRule
Expand Down Expand Up @@ -175,7 +173,7 @@ Describe "TestWildCard" {
}

It "filters rules based on wild card input and severity"{
$rules = Get-ScriptAnalyzerRule -Name PSDSC* -Severity Information
$rules = Get-ScriptAnalyzerRule -Name PSDSC* -Severity Information
$rules.Count | Should -Be 4
}
}
4 changes: 1 addition & 3 deletions Tests/Engine/Helper.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
Import-Module PSScriptAnalyzer

Describe "Test Directed Graph" {
Context "When a graph is created" {
$digraph = New-Object -TypeName 'Microsoft.Windows.PowerShell.ScriptAnalyzer.DiGraph[string]'
Expand Down Expand Up @@ -28,4 +26,4 @@ Describe "Test Directed Graph" {
$digraph.IsConnected('v1', 'v4') | Should -BeTrue
}
}
}
}
2 changes: 0 additions & 2 deletions Tests/Engine/InvokeFormatter.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$testRootDirectory = Split-Path -Parent $directory

Import-Module PSScriptAnalyzer
Import-Module (Join-Path $testRootDirectory "PSScriptAnalyzerTestHelper.psm1")

Describe "Invoke-Formatter Cmdlet" {
Expand Down
13 changes: 1 addition & 12 deletions Tests/Engine/InvokeScriptAnalyzer.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,15 +1,4 @@
# Check if PSScriptAnalyzer is already loaded so we don't
# overwrite a test version of Invoke-ScriptAnalyzer by
# accident
if (!(Get-Module PSScriptAnalyzer) -and !$testingLibraryUsage)
{
Import-Module PSScriptAnalyzer
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$testRootDirectory = Split-Path -Parent $directory
Import-Module (Join-Path $testRootDirectory 'PSScriptAnalyzerTestHelper.psm1')
}

$sa = Get-Command Invoke-ScriptAnalyzer
$sa = Get-Command Invoke-ScriptAnalyzer
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$singularNouns = "PSUseSingularNouns"
$approvedVerb = "PSUseApprovedVerbs"
Expand Down
3 changes: 1 addition & 2 deletions Tests/Engine/LibraryUsage.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$testRootDirectory = Split-Path -Parent $directory
Import-Module (Join-Path $testRootDirectory 'PSScriptAnalyzerTestHelper.psm1')
Import-Module PSScriptAnalyzer

# test is meant to verify functionality if chsarp apis are used. Hence not if psedition is CoreCLR
# test is meant to verify functionality if csharp apis are used. Hence not if psedition is CoreCLR
if ((Test-PSEditionCoreCLR))
{
return
Expand Down
10 changes: 1 addition & 9 deletions Tests/Engine/RuleSuppression.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
# Check if PSScriptAnalyzer is already loaded so we don't
# overwrite a test version of Invoke-ScriptAnalyzer by
# accident
if (!(Get-Module PSScriptAnalyzer) -and !$testingLibraryUsage)
{
Import-Module -Verbose PSScriptAnalyzer
}

$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$testRootDirectory = Split-Path -Parent $directory
Import-Module (Join-Path $testRootDirectory 'PSScriptAnalyzerTestHelper.psm1')

Expand Down
26 changes: 10 additions & 16 deletions Tests/Engine/RuleSuppressionClass.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
if ($PSVersionTable.PSVersion -ge [Version]'5.0.0') {

# Check if PSScriptAnalyzer is already loaded so we don't
# overwrite a test version of Invoke-ScriptAnalyzer by
# accident
if (!(Get-Module PSScriptAnalyzer) -and !$testingLibraryUsage)
{
Import-Module -Verbose PSScriptAnalyzer
$script:skipForV3V4 = $true
if ($PSVersionTable.PSVersion -ge [Version]'5.0.0') {
$script:skipForV3V4 = $false
}

$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
Expand All @@ -15,7 +10,7 @@ $violations = Invoke-ScriptAnalyzer "$directory\RuleSuppression.ps1"
Describe "RuleSuppressionWithoutScope" {

Context "Class" {
It "Does not raise violations" {
It "Does not raise violations" -skip:$script:skipForV3V4 {
$suppression = $violations | Where-Object {$_.RuleName -eq "PSAvoidUsingInvokeExpression" }
$suppression.Count | Should -Be 0
$suppression = $violationsUsingScriptDefinition | Where-Object {$_.RuleName -eq "PSAvoidUsingInvokeExpression" }
Expand All @@ -24,7 +19,7 @@ Describe "RuleSuppressionWithoutScope" {
}

Context "FunctionInClass" {
It "Does not raise violations" {
It "Does not raise violations" -skip:$script:skipForV3V4 {
$suppression = $violations | Where-Object {$_.RuleName -eq "PSAvoidUsingCmdletAliases" }
$suppression.Count | Should -Be 0
$suppression = $violationsUsingScriptDefinition | Where-Object {$_.RuleName -eq "PSAvoidUsingCmdletAliases" }
Expand All @@ -33,7 +28,7 @@ Describe "RuleSuppressionWithoutScope" {
}

Context "Script" {
It "Does not raise violations" {
It "Does not raise violations" -skip:$script:skipForV3V4 {
$suppression = $violations | Where-Object {$_.RuleName -eq "PSProvideCommentHelp" }
$suppression.Count | Should -Be 0
$suppression = $violationsUsingScriptDefinition | Where-Object {$_.RuleName -eq "PSProvideCommentHelp" }
Expand All @@ -42,7 +37,7 @@ Describe "RuleSuppressionWithoutScope" {
}

Context "RuleSuppressionID" {
It "Only suppress violations for that ID" {
It "Only suppress violations for that ID" -skip:$script:skipForV3V4 {
$suppression = $violations | Where-Object {$_.RuleName -eq "PSAvoidDefaultValueForMandatoryParameter" }
$suppression.Count | Should -Be 1
$suppression = $violationsUsingScriptDefinition | Where-Object {$_.RuleName -eq "PSAvoidDefaultValueForMandatoryParameter" }
Expand All @@ -53,7 +48,7 @@ Describe "RuleSuppressionWithoutScope" {

Describe "RuleSuppressionWithScope" {
Context "FunctionScope" {
It "Does not raise violations" {
It "Does not raise violations" -skip:$script:skipForV3V4 {
$suppression = $violations | Where-Object {$_.RuleName -eq "PSAvoidUsingPositionalParameters" }
$suppression.Count | Should -Be 0
$suppression = $violationsUsingScriptDefinition | Where-Object {$_.RuleName -eq "PSAvoidUsingPositionalParameters" }
Expand All @@ -62,12 +57,11 @@ Describe "RuleSuppressionWithScope" {
}

Context "ClassScope" {
It "Does not raise violations" {
It "Does not raise violations" -skip:$script:skipForV3V4 {
$suppression = $violations | Where-Object {$_.RuleName -eq "PSAvoidUsingConvertToSecureStringWithPlainText" }
$suppression.Count | Should -Be 0
$suppression = $violationsUsingScriptDefinition | Where-Object {$_.RuleName -eq "PSAvoidUsingConvertToSecureStringWithPlainText" }
$suppression.Count | Should -Be 0
}
}
}
}
}
4 changes: 0 additions & 4 deletions Tests/Engine/Settings.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
if (!(Get-Module PSScriptAnalyzer)) {
Import-Module PSScriptAnalyzer
}

$directory = Split-Path $MyInvocation.MyCommand.Path
$settingsTestDirectory = [System.IO.Path]::Combine($directory, "SettingsTest")
$project1Root = [System.IO.Path]::Combine($settingsTestDirectory, "Project1")
Expand Down
2 changes: 0 additions & 2 deletions Tests/Engine/TextEdit.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
Import-Module PSScriptAnalyzer

Describe "TextEdit Class" {
$type = [Microsoft.Windows.PowerShell.ScriptAnalyzer.TextEdit]

Expand Down
1 change: 0 additions & 1 deletion Tests/Rules/AlignAssignmentStatement.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$testRootDirectory = Split-Path -Parent $directory

Import-Module PSScriptAnalyzer
Import-Module (Join-Path $testRootDirectory "PSScriptAnalyzerTestHelper.psm1")

$ruleConfiguration = @{
Expand Down
5 changes: 2 additions & 3 deletions Tests/Rules/AvoidAssignmentToAutomaticVariable.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Import-Module PSScriptAnalyzer
$ruleName = "PSAvoidAssignmentToAutomaticVariable"
$ruleName = "PSAvoidAssignmentToAutomaticVariable"

Describe "AvoidAssignmentToAutomaticVariables" {
Context "ReadOnly Variables" {
Expand Down Expand Up @@ -71,4 +70,4 @@ Describe "AvoidAssignmentToAutomaticVariables" {
}

}
}
}
5 changes: 2 additions & 3 deletions Tests/Rules/AvoidConvertToSecureStringWithPlainText.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Import-Module PSScriptAnalyzer
Set-Alias ctss ConvertTo-SecureString
Set-Alias ctss ConvertTo-SecureString
$violationMessage = "File 'AvoidConvertToSecureStringWithPlainText.ps1' uses ConvertTo-SecureString with plaintext. This will expose secure information. Encrypted standard strings should be used instead."
$violationName = "PSAvoidUsingConvertToSecureStringWithPlainText"
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
Expand All @@ -22,4 +21,4 @@ Describe "AvoidConvertToSecureStringWithPlainText" {
$noViolations.Count | Should -Be 0
}
}
}
}
5 changes: 2 additions & 3 deletions Tests/Rules/AvoidDefaultTrueValueSwitchParameter.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Import-Module PSScriptAnalyzer
$violationMessage = "File 'AvoidDefaultTrueValueSwitchParameter.ps1' has a switch parameter default to true."
$violationMessage = "File 'AvoidDefaultTrueValueSwitchParameter.ps1' has a switch parameter default to true."
$violationName = "PSAvoidDefaultValueSwitchParameter"
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$violations = Invoke-ScriptAnalyzer $directory\AvoidDefaultTrueValueSwitchParameter.ps1 | Where-Object {$_.RuleName -eq $violationName}
Expand All @@ -21,4 +20,4 @@ Describe "AvoidDefaultTrueValueSwitchParameter" {
$noViolations.Count | Should -Be 0
}
}
}
}
5 changes: 2 additions & 3 deletions Tests/Rules/AvoidDefaultValueForMandatoryParameter.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Import-Module PSScriptAnalyzer
$ruleName = 'PSAvoidDefaultValueForMandatoryParameter'
$ruleName = 'PSAvoidDefaultValueForMandatoryParameter'

Describe "AvoidDefaultValueForMandatoryParameter" {
Context "When there are violations" {
Expand All @@ -23,4 +22,4 @@ Describe "AvoidDefaultValueForMandatoryParameter" {
$violations.Count | Should -Be 0
}
}
}
}
5 changes: 2 additions & 3 deletions Tests/Rules/AvoidEmptyCatchBlock.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Import-Module PSScriptAnalyzer
$violationMessage = "Empty catch block is used. Please use Write-Error or throw statements in catch blocks."
$violationMessage = "Empty catch block is used. Please use Write-Error or throw statements in catch blocks."
$violationName = "PSAvoidUsingEmptyCatchBlock"
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$violations = Invoke-ScriptAnalyzer $directory\AvoidEmptyCatchBlock.ps1 | Where-Object {$_.RuleName -eq $violationName}
Expand All @@ -22,4 +21,4 @@ Describe "UseDeclaredVarsMoreThanAssignments" {
$noViolations.Count | Should -Be 0
}
}
}
}
1 change: 0 additions & 1 deletion Tests/Rules/AvoidGlobalAliases.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$testRootDirectory = Split-Path -Parent $directory
Import-Module (Join-Path $testRootDirectory 'PSScriptAnalyzerTestHelper.psm1')
Import-Module PSScriptAnalyzer

$AvoidGlobalAliasesError = "Avoid creating aliases with a Global scope."
$violationName = "PSAvoidGlobalAliases"
Expand Down
4 changes: 1 addition & 3 deletions Tests/Rules/AvoidGlobalFunctions.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
Import-Module PSScriptAnalyzer

$functionErroMessage = "Avoid creating functions with a Global scope."
$functionErroMessage = "Avoid creating functions with a Global scope."
$violationName = "PSAvoidGlobalFunctions"

$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
Expand Down
3 changes: 1 addition & 2 deletions Tests/Rules/AvoidGlobalOrUnitializedVars.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Import-Module PSScriptAnalyzer
$globalMessage = "Found global variable 'Global:1'."
$globalMessage = "Found global variable 'Global:1'."
$globalName = "PSAvoidGlobalVars"

# PSAvoidUninitializedVariable rule has been deprecated
Expand Down
6 changes: 2 additions & 4 deletions Tests/Rules/AvoidInvokingEmptyMembers.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
Import-Module PSScriptAnalyzer

$violationMessage = "() has non-constant members. Invoking non-constant members may cause bugs in the script."
$violationMessage = "() has non-constant members. Invoking non-constant members may cause bugs in the script."
$violationName = "PSAvoidInvokingEmptyMembers"
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$violations = Invoke-ScriptAnalyzer $directory\AvoidInvokingEmptyMembers.ps1 | Where-Object {$_.RuleName -eq $violationName}
Expand All @@ -22,4 +20,4 @@ Describe "AvoidInvokingEmptyMembers" {
$noViolations.Count | Should -Be 0
}
}
}
}
3 changes: 1 addition & 2 deletions Tests/Rules/AvoidNullOrEmptyHelpMessageAttribute.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
Import-Module PSScriptAnalyzer
$violationName = "PSAvoidNullOrEmptyHelpMessageAttribute"
$violationMessage = "HelpMessage parameter attribute should not be null or empty. To fix a violation of this rule, please set its value to a non-empty string."
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
Expand All @@ -21,4 +20,4 @@ Describe "AvoidNullOrEmptyHelpMessageAttribute" {
$noViolations.Count | Should -Be 0
}
}
}
}
5 changes: 2 additions & 3 deletions Tests/Rules/AvoidPositionalParameters.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Import-Module PSScriptAnalyzer
$violationMessage = "Cmdlet 'Get-Command' has positional parameter. Please use named parameters instead of positional parameters when calling a command."
$violationMessage = "Cmdlet 'Get-Command' has positional parameter. Please use named parameters instead of positional parameters when calling a command."
$violationName = "PSAvoidUsingPositionalParameters"
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$violations = Invoke-ScriptAnalyzer $directory\AvoidPositionalParameters.ps1 | Where-Object {$_.RuleName -eq $violationName}
Expand Down Expand Up @@ -27,4 +26,4 @@ Describe "AvoidPositionalParameters" {
$noViolationsDSC.Count | Should -Be 0
}
}
}
}
5 changes: 2 additions & 3 deletions Tests/Rules/AvoidReservedParams.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Import-Module PSScriptAnalyzer
$violationMessage = [regex]::Escape("Verb-Files' defines the reserved common parameter 'Verbose'.")
$violationMessage = [regex]::Escape("Verb-Files' defines the reserved common parameter 'Verbose'.")
$violationName = "PSReservedParams"
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$violations = Invoke-ScriptAnalyzer $directory\BadCmdlet.ps1 | Where-Object {$_.RuleName -eq $violationName}
Expand All @@ -22,4 +21,4 @@ Describe "AvoidReservedParams" {
$noViolations.Count | Should -Be 0
}
}
}
}
3 changes: 1 addition & 2 deletions Tests/Rules/AvoidShouldContinueWithoutForce.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Import-Module PSScriptAnalyzer
$violationMessage = "Function 'Verb-Noun2' in file 'AvoidShouldContinueWithoutForce.ps1' uses ShouldContinue but does not have a boolean force parameter. The force parameter will allow users of the script to bypass ShouldContinue prompt"
$violationMessage = "Function 'Verb-Noun2' in file 'AvoidShouldContinueWithoutForce.ps1' uses ShouldContinue but does not have a boolean force parameter. The force parameter will allow users of the script to bypass ShouldContinue prompt"
$violationName = "PSAvoidShouldContinueWithoutForce"
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$violations = Invoke-ScriptAnalyzer $directory\AvoidShouldContinueWithoutForce.ps1 | Where-Object {$_.RuleName -eq $violationName}
Expand Down
1 change: 0 additions & 1 deletion Tests/Rules/AvoidTrailingWhitespace.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$testRootDirectory = Split-Path -Parent $directory

Import-Module PSScriptAnalyzer
Import-Module (Join-Path $testRootDirectory "PSScriptAnalyzerTestHelper.psm1")

$ruleName = "PSAvoidTrailingWhitespace"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
$testRootDirectory = Split-Path -Parent $directory
Import-Module PSScriptAnalyzer
Import-Module (Join-Path $testRootDirectory 'PSScriptAnalyzerTestHelper.psm1')

$missingMessage = "The member 'ModuleVersion' is not present in the module manifest."
Expand Down
3 changes: 1 addition & 2 deletions Tests/Rules/AvoidUserNameAndPasswordParams.tests.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Import-Module PSScriptAnalyzer


$violationMessage = "Function 'TestFunction1' has both Username and Password parameters. Either set the type of the Password parameter to SecureString or replace the Username and Password parameters with a Credential parameter of type PSCredential. If using a Credential parameter in PowerShell 4.0 or earlier, please define a credential transformation attribute after the PSCredential type attribute."
$violationName = "PSAvoidUsingUserNameAndPasswordParams"
$directory = Split-Path -Parent $MyInvocation.MyCommand.Path
Expand Down
1 change: 0 additions & 1 deletion Tests/Rules/AvoidUsingAlias.tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ $violationFilepath = Join-Path $directory 'AvoidUsingAlias.ps1'
$violations = Invoke-ScriptAnalyzer $violationFilepath | Where-Object {$_.RuleName -eq $violationName}
$noViolations = Invoke-ScriptAnalyzer $directory\AvoidUsingAliasNoViolations.ps1 | Where-Object {$_.RuleName -eq $violationName}

Import-Module PSScriptAnalyzer
Import-Module (Join-Path $testRootDirectory "PSScriptAnalyzerTestHelper.psm1")

Describe "AvoidUsingAlias" {
Expand Down
Loading