Initial implementation: format(TimeInterval, fmt)
This commit is contained in:
parent
c503efe439
commit
4a8f0db62d
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
*.sw?
|
||||
nimcache/
|
||||
test/ttimeutils
|
||||
*.ndb
|
||||
|
6
test/nim.cfg
Normal file
6
test/nim.cfg
Normal file
@ -0,0 +1,6 @@
|
||||
path = "."
|
||||
hints = off
|
||||
linedir = off
|
||||
debuginfo
|
||||
stacktrace = on
|
||||
linetrace = on
|
8
test/ttimeutils.nim
Normal file
8
test/ttimeutils.nim
Normal file
@ -0,0 +1,8 @@
|
||||
import times, timeutils, unittest
|
||||
|
||||
suite "timeutils":
|
||||
test "format TimeInterval":
|
||||
let interval = seconds(70)
|
||||
check interval.format("ss's'") == "10s"
|
||||
check interval.format("mm'm' ss's'") == "01m 10s"
|
||||
check interval.format("mm:ss") == "01:10"
|
5
timeutils.nim
Normal file
5
timeutils.nim
Normal file
@ -0,0 +1,5 @@
|
||||
import times
|
||||
|
||||
proc format*(ti: TimeInterval, fmt: string): string =
|
||||
let info = getGMTime(fromSeconds(0) + ti)
|
||||
return info.format(fmt)
|
11
timeutils.nimble
Normal file
11
timeutils.nimble
Normal file
@ -0,0 +1,11 @@
|
||||
# Package
|
||||
|
||||
version = "0.1.0"
|
||||
author = "Jonathan Bernard"
|
||||
description = "Utility methods to fill in the horrid time support in Nim\'s stdlib. This is holding me over until I can write a proper time module for the stdlib and submit it."
|
||||
license = "BSD3"
|
||||
|
||||
# Dependencies
|
||||
|
||||
requires "nim >= 0.15.0"
|
||||
|
Loading…
x
Reference in New Issue
Block a user