tests/testdata/utility/ImportPsd1.psd1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@{
    Name = "Fred"
    Age  = 66
    Soul = @{
        Color  = "Black"
        Size   = 0.002
        Exists = $false
        States = @(
            "Rotten"
            "Corrupted"
        )
        Owner  = $null
    }
}
@{
    Name     = "Max"
    Nachname = "Mustermann"
}