You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
322 B

(ns rustint.core-test
(:require [clojure.test :refer :all]
[rustint.core :refer :all]))
(deftest pasar-a-float-test01
(testing "Test 01 pasar-a-float"
(is (= (pasar-a-float 10) 10.0))
)
)
(deftest pasar-a-float-test02
(testing "Test 02 pasar-a-float"
(is (= (pasar-a-float "10") 10.0))
)
)