Skip to content

Commit

Permalink
Add test for of-millis
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhinavOmprakash committed Oct 22, 2021
1 parent f55588f commit f494fed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/tick/api_test.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,8 @@
;; units.
(deftest duration-functions-test
(is (= (t/of-nanos 10) (t/new-duration 10 :nanos)))
(is (= (t/of-micros 10) (t/new-duration 10 :micros))))
(is (= (t/of-micros 10) (t/new-duration 10 :micros)))
(is (= (t/of-millis 10) (t/new-duration 10 :millis))))



Expand Down

0 comments on commit f494fed

Please sign in to comment.