more tests on iterator over dicts

This commit is contained in:
Celestino Amoroso 2026-04-19 15:16:25 +02:00
parent 807df0f3a8
commit 1a7e537921

View File

@ -29,8 +29,10 @@ func TestIteratorParser(t *testing.T) {
/* 18 */ {`it=$({"next":func(){5}}); it.clean`, nil, nil}, /* 18 */ {`it=$({"next":func(){5}}); it.clean`, nil, nil},
/* 19 */ {`it=$({1:"one",2:"two",3:"three"}); it++`, int64(1), nil}, /* 19 */ {`it=$({1:"one",2:"two",3:"three"}); it++`, int64(1), nil},
/* 20 */ {`it=$({1:"one",2:"two",3:"three"}, "default", "value"); it++`, "one", nil}, /* 20 */ {`it=$({1:"one",2:"two",3:"three"}, "default", "value"); it++`, "one", nil},
/* 21 */ {`it=$({1:"one",2:"two",3:"three"}, "desc", "key"); it++`, int64(3), nil},
/* 22 */ {`it=$({1:"one",2:"two",3:"three"}, "asc", "item"); it++`, NewList([]any{int64(1), "one"}), nil},
} }
runTestSuiteSpec(t, section, inputs, 20) // runTestSuiteSpec(t, section, inputs, 20)
// runTestSuite(t, section, inputs) runTestSuite(t, section, inputs)
} }