master
CrossNox 3 years ago
parent e72cd50873
commit 9164cb3099
  1. 17
      test/rustint/core_test.clj

@ -239,3 +239,20 @@
(is (nil? (dump '[HLT]))) (is (nil? (dump '[HLT])))
) )
) )
(deftest dump-03
(testing "Test 03 dump"
(let [
printed (with-out-str (dump nil))
]
(is (= printed "0 nil\n"
))
)
)
)
(deftest dump-03-nil
(testing "Test 03 dump nil"
(is (nil? (dump nil)))
)
)

Loading…
Cancel
Save