mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 21:10:36 +00:00
15 lines
481 B
Lua
15 lines
481 B
Lua
local DateTime = require("@lune/datetime")
|
|
|
|
assert(
|
|
DateTime.fromUnixTimestamp(1693068988):formatUniversalTime("%Y-%m-%dT%H:%M:%SZ", "en")
|
|
== "2023-08-26T16:56:28Z",
|
|
"invalid ISO 8601 formatting for DateTime.formatTime() (UTC)"
|
|
)
|
|
|
|
local expectedTimeString = os.date("%Y-%m-%dT%H:%M:%SZ", 1694078954)
|
|
|
|
assert(
|
|
DateTime.fromUnixTimestamp(1694078954):formatLocalTime("%Y-%m-%dT%H:%M:%SZ", "en")
|
|
== expectedTimeString,
|
|
"invalid ISO 8601 formatting for DateTime.formatTime()"
|
|
)
|