From 99673b1dfa9791db6fda18f78f89ec94e45f6dbe Mon Sep 17 00:00:00 2001 From: Alan Renouf Date: Fri, 15 Jul 2016 16:45:03 -0700 Subject: [PATCH] removed pester test so it gets approval --- Pester/Test Connection to VC.ps1 | 40 -------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 Pester/Test Connection to VC.ps1 diff --git a/Pester/Test Connection to VC.ps1 b/Pester/Test Connection to VC.ps1 deleted file mode 100644 index cf017bc..0000000 --- a/Pester/Test Connection to VC.ps1 +++ /dev/null @@ -1,40 +0,0 @@ -<# -Script name: Test Connection to VC.ps1 -Created on: 07/15/2016 -Author: Alan Renouf, @alanrenouf -Description: The purpose of this pester test is to ensure the PowerCLI modules are imported and a connection and disconnection can be made to a vCenter -Dependencies: Pester Module -#> - -$VCNAME = "MyVC@Mydomain.local" -$VCUSER = "Administrator@vsphere.local" -$VCPASS = "Admin!23" - -Describe "PowerCLI Tests" { - It "Importing PowerCLI Modules" { - Get-Module VMware* | Foreach { - Write-Host "Importing Module $($_.name) Version $($_.Version)" - $_ | Import-Module - Get-Module $_ | Should Be $true - } - } -} - -Describe "Connect-VIServer Tests" { - - $connection = Connect-VIServer $VCName -User $VCUser -password $VCPass - It "Connection is active" { - $Global:DefaultVIServer[0].isconnected | Should Be $true - } - - It "Checking connected server name is $VCName" { - $Global:DefaultVIServer[0].name | Should Be $VCName - } -} - -Describe "Disconnect-VIServer Tests" { - It "Disconnect from $VCName" { - Disconnect-VIServer $VCName -confirm:$false - $Global:DefaultVIServer | Should Be $null - } -} \ No newline at end of file