Compare commits

..

No commits in common. '90018100ec14a189c1285f2d7220a7f47f08b464' and '819a50f07e7366fa0c903c1c460ef8f64d28ce47' have entirely different histories.

  1. 3
      src/rustint/core.clj
  2. 11
      test/rustint/core_test.clj

@ -2533,8 +2533,7 @@
(cond
(string? arg) "%s"
(int? arg) "%d"
(and (float? arg) (nil? rustf) (== (pasar-a-int arg) arg)) "%.0f"
(and (float? arg) (nil? rustf)) "%f"
(and (float? arg) (nil? rustf)) "%.0f"
(and (float? arg) (not (nil? rustf))) (format "%%%sf" rustf)
)
)

@ -479,17 +479,6 @@
)
)
(deftest test-especificador-formato-06
(testing "Test 06 especificador formato"
(is (=
(especificador-formato 2.1 nil)
"%f"
)
)
)
)
(deftest test-listar-01
(testing "Test 01 listar"
(let [

Loading…
Cancel
Save