diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2023-10-24 22:30:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-24 22:30:42 +0200 |
commit | 1ab94699c56324f778c0bbdadfe47aed65d7505f (patch) | |
tree | 3e108435e4ab35a6ffe379cc0e650bc162e8f525 /test/project | |
parent | c82f2a37143c6e32a95a996e91c4387acf3f33b4 (diff) | |
parent | d733663e8bd9940b55da76bd04f1ec8896414c11 (diff) | |
download | redot-cpp-1ab94699c56324f778c0bbdadfe47aed65d7505f.tar.gz |
Merge pull request #1277 from dsnopek/variant-iter-tests
Add an automated test using a Variant iterator
Diffstat (limited to 'test/project')
-rw-r--r-- | test/project/main.gd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/project/main.gd b/test/project/main.gd index 41a5e02..62bd19d 100644 --- a/test/project/main.gd +++ b/test/project/main.gd @@ -187,6 +187,10 @@ func _ready(): assert_equal(example.test_bitfield(0), 0) assert_equal(example.test_bitfield(Example.FLAG_ONE | Example.FLAG_TWO), 3) + # Test variant iterator. + assert_equal(example.test_variant_iterator([10, 20, 30]), [15, 25, 35]) + assert_equal(example.test_variant_iterator(null), "iter_init: not valid") + # RPCs. assert_equal(example.return_last_rpc_arg(), 0) example.test_rpc(42) |