mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
21 lines
246 B
Plaintext
21 lines
246 B
Plaintext
//test basic insertion
|
|
{
|
|
var d = [:];
|
|
|
|
d["foo"] = "bar";
|
|
|
|
assert d == ["foo":"bar"], "basic insertion failed";
|
|
}
|
|
|
|
|
|
//test dot insertion
|
|
{
|
|
var d = [:];
|
|
|
|
d.foo = "bar";
|
|
|
|
assert d == ["foo":"bar"], "dot insertion failed";
|
|
}
|
|
|
|
|
|
print "All good"; |