summary refs log tree commit diff stats
path: root/tests/stdlib/t21406.nim
blob: 86bf7b0c7c7c23f1002f1d778e4f2389c1b86a35 (plain) (blame)
1
2
3
4
5
6
7
import std/[times, strformat]
import std/assertions

let aTime = getTime()
doAssert fmt"{aTime}" == $aTime
let aNow = now()
doAssert fmt"{aNow}" == $aNow