mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2026-08-29 09:36:37 +00:00
17 lines
495 B
PowerShell
17 lines
495 B
PowerShell
. "$psscriptroot\..\lib\core.ps1"
|
|
. "$psscriptroot\..\lib\config.ps1"
|
|
|
|
describe "hashtable" {
|
|
$json = '{ "one": 1, "two": [ { "a": "a" }, "b", 2 ], "three": { "four": 4 } }'
|
|
|
|
it "converts pscustomobject to hashtable" {
|
|
$obj = convertfrom-json $json
|
|
$ht = hashtable $obj
|
|
|
|
$ht.one | should beexactly 1
|
|
$ht.two[0].a | should be "a"
|
|
$ht.two[1] | should be "b"
|
|
$ht.two[2] | should beexactly 2
|
|
$ht.three.four | should beexactly 4
|
|
}
|
|
} |