Back
dec (clj)
(source)function
(dec t)
Examples
tick
(ns tick.api-test
(:require
[clojure.test
:refer [deftest is testing run-tests]
:refer-macros [deftest is testing run-tests]]
[tick.core :as t]
[tick.locale-en-us]
[tick.protocols :as p]
[cljc.java-time.clock]
[cljc.java-time.instant]
[cljc.java-time.day-of-week]
[cljc.java-time.month]
[cljc.java-time.year]
#?@(:cljs [[java.time :refer [Instant]]]))
#?(:clj
(:import [java.time Instant])))
(deftest month
(let [months (fn [strings] (map t/month strings))]
(is (every? #{cljc.java-time.month/january} (months ["jan" "january"])))
(is (every? #{cljc.java-time.month/february} (months ["feb" "february"])))
(is (every? #{cljc.java-time.month/march} (months ["mar" "march"])))
(is (every? #{cljc.java-time.month/april} (months ["apr" "april"])))
(is (every? #{cljc.java-time.month/may} (months ["may"])))
(is (every? #{cljc.java-time.month/june} (months ["jun" "june"])))
(is (every? #{cljc.java-time.month/july} (months ["jul" "july"])))
(is (every? #{cljc.java-time.month/august} (months ["aug" "august"])))
(is (every? #{cljc.java-time.month/september} (months ["sep" "september"])))
(is (every? #{cljc.java-time.month/october} (months ["oct" "october"])))
(is (every? #{cljc.java-time.month/november} (months ["nov" "november"])))
(is (every? #{cljc.java-time.month/december} (months ["dec" "december"])))))