tnre.nim 588 B

123456789101112131415161718192021222324252627282930313233
  1. discard """
  2. # Since the tests for nre are all bundled together we treat failure in one test as an nre failure
  3. # When running 'testament/tester' a failed check() in the test suite will cause the exit
  4. # codes to differ and be reported as a failure
  5. output:
  6. '''[Suite] Test NRE initialization
  7. [Suite] captures
  8. [Suite] find
  9. [Suite] string splitting
  10. [Suite] match
  11. [Suite] replace
  12. [Suite] escape strings
  13. [Suite] Misc tests'''
  14. """
  15. import nre
  16. import nre/init
  17. import nre/captures
  18. import nre/find
  19. import nre/split
  20. import nre/match
  21. import nre/replace
  22. import nre/escape
  23. import nre/misc