From 7ad9057f35f29b0591bde1c237ba669d127493e6 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Mon, 28 Nov 2022 15:37:42 -0300 Subject: [PATCH] add 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 c918e0b..f41ab4d 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -789,3 +789,12 @@ )) ) ) + +(deftest test-cargar-en-reg-dest-01 + (testing "Test 01 cargar-en-reg-dest" + (is (= + (cargar-en-reg-dest [[['String "2"] ['i64 6] ['i64 2] ['i64 2] ['i64 2]] [['i64 6] ['i64 2] ['i64 [0 3]] ['i64 [0 4]] ['i64 2] ['i64 2]]] [0 4] 'i64 0) + [[['String "2"] ['i64 6] ['i64 2] ['i64 2] ['i64 0]] [['i64 6] ['i64 2] ['i64 [0 3]] ['i64 [0 4]] ['i64 2] ['i64 2]]] + )) + ) +)