From 711a91f475ba43ab3652c1db12c4acf1bd08a759 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Mon, 28 Nov 2022 15:46:47 -0300 Subject: [PATCH] add another test --- test/rustint/core_test.clj | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/rustint/core_test.clj b/test/rustint/core_test.clj index f41ab4d..5d6d07a 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -798,3 +798,12 @@ )) ) ) + +(deftest test-cargar-en-reg-dest-02 + (testing "Test 02 cargar-en-reg-dest" + (is (= + (cargar-en-reg-dest [[['String "2"] ['i64 6] ['i64 2] ['i64 2] ['i64 0]] [['i64 6] ['i64 2] ['i64 [0 3]] ['i64 [0 4]] ['i64 2] ['i64 2]]] [0 3] 'f64 3) + [[['String "2"] ['i64 6] ['i64 2] ['f64 3] ['i64 0]] [['i64 6] ['i64 2] ['i64 [0 3]] ['i64 [0 4]] ['i64 2] ['i64 2]]] + )) + ) +)