File size: 495 Bytes
8c763fb
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
Describe "Clear-Item tests" -Tag "CI" {
    BeforeAll {
        ${myClearItemVariableTest} = "Value is here"
    }

    It "Clear-Item can clear an item" {
        $myClearItemVariableTest | Should -BeExactly "Value is here"
        Clear-Item -Path variable:myClearItemVariableTest
        Test-Path -Path variable:myClearItemVariableTest | Should -BeTrue
        $myClearItemVariableTest | Should -BeNullOrEmpty
    }
}