blob: 030319ebffc4d28ae5b82e05da181a7eeb9af4c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
discard """
# Since the tests for nre are all bundled together we treat failure in one test as an nre failure
# When running 'tests/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
|