Skip to content
Snippets Groups Projects
Commit e87cf006 authored by Simon Belak's avatar Simon Belak
Browse files

Add day-of-year and test for all the available units

parent 918f18a1
No related branches found
No related tags found
No related merge requests found
......@@ -938,6 +938,7 @@
:quarter-of-year (tru "Q{0}" (date/date-extract :quarter-of-year dt tz))
(:minute-of-hour
:day-of-month
:day-of-year
:week-of-year) (date/date-extract unit dt tz))))
(defn- field-reference->field
......@@ -960,6 +961,7 @@
:hour-of-day "hour"
:day-of-week "day of week"
:day-of-month "day of month"
:day-of-year "day of year"
:week-of-year "week"
:month-of-year "month"
:quarter-of-year "quarter"}
......
......@@ -504,3 +504,8 @@
(tru "{0}th" 0)
(tru "{0}th" 8)]
(map #'magic/pluralize [1 22 303 0 8]))
;; Make sure we have handlers for all the units available
(expect
(every? (partial #'magic/humanize-datetime "1990-09-09T12:30:00")
(concat (var-get #'date/date-extract-units) (var-get #'date/date-trunc-units))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment