mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 05:50:30 +00:00
unittest add resetOutputFormatters proc (#13267)
* add resetOutputFormatters * remove space * resolve comments
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user