unittest add resetOutputFormatters proc (#13267)

* add resetOutputFormatters

* remove space

* resolve comments
This commit is contained in:
cooldome
2020-01-28 14:16:03 +00:00
committed by GitHub
parent 46bfb590c8
commit 84e8477b90
2 changed files with 6 additions and 1 deletions

View File

@@ -52,8 +52,8 @@
This simplifies code by reducing need for if-else branches around intermediate maybe nil values.
Eg: `echo ?.n.typ.kind`
- Added `minIndex` and `maxIndex` to the `sequtils` module
- Added `os.isRelativeTo` to tell whether a path is relative to another
- Added `resetOutputFormatters` to `unittest`
## Library changes

View File

@@ -96,6 +96,8 @@
import
macros, strutils, streams, times, sets, sequtils
include "system/inclrtl"
when declared(stdout):
import os
@@ -186,6 +188,9 @@ proc delOutputFormatter*(formatter: OutputFormatter) =
keepIf(formatters, proc (x: OutputFormatter): bool =
x != formatter)
proc resetOutputFormatters* {.since: (1, 1).} =
formatters = @[]
proc newConsoleOutputFormatter*(outputLevel: OutputLevel = OutputLevel.PRINT_ALL,
colorOutput = true): <//>ConsoleOutputFormatter =
ConsoleOutputFormatter(