Files
Nim/tests/stdlib/tnre.nim
Jacek Sieka 7cf3944c38 Testament pre parallel (#9137)
* testament: move to root dir (it's not a test)

* osproc: fix process index passed to afterRunEvent for parallel runs

it was passing the index of the process, not index of all commands

* testament: complete file move

(cherry picked from commit 97738a4f28)
2018-11-01 17:35:08 +01:00

33 lines
588 B
Nim

discard """
# Since the tests for nre are all bundled together we treat failure in one test as an nre failure
# When running 'testament/tester' a failed check() in the test suite will cause the exit
# codes to differ and be reported as a failure
output:
'''[Suite] Test NRE initialization
[Suite] captures
[Suite] find
[Suite] string splitting
[Suite] match
[Suite] replace
[Suite] escape strings
[Suite] Misc tests'''
"""
import nre
import nre/init
import nre/captures
import nre/find
import nre/split
import nre/match
import nre/replace
import nre/escape
import nre/misc