1
1
Fork 0
mirror of https://github.com/lune-org/lune.git synced 2025-04-22 21:03:55 +01:00
lune/tests/datetime/fromIsoDate.luau

11 lines
299 B
Text

local DateTime = require("@lune/datetime")
assert(
DateTime.fromIsoDate("2023-08-26T16:56:28Z") ~= nil,
"expected DateTime.fromIsoDate() to return DateTime, got nil"
)
assert(
DateTime.fromIsoDate("1929-12-05T23:18:23Z") ~= nil,
"expected DateTime.fromIsoDate() to return DateTime, got nil"
)