/tests/tests.rs

https://github.com/BurntSushi/ripgrep · Rust · 22 lines · 10 code · 2 blank · 10 comment · 0 complexity · 99ee51e627233eade0d8c8af3cfe7eca MD5 · raw file

  1. // Macros useful for testing.
  2. #[macro_use]
  3. mod macros;
  4. // Corpora.
  5. mod hay;
  6. // Utilities for making tests nicer to read and easier to write.
  7. mod util;
  8. // Tests for ripgrep's handling of binary files.
  9. mod binary;
  10. // Tests related to most features in ripgrep. If you're adding something new
  11. // to ripgrep, tests should probably go in here.
  12. mod feature;
  13. // Tests for ripgrep's JSON format.
  14. mod json;
  15. // Miscellaneous tests grouped in a haphazard manner. Try not to add more.
  16. mod misc;
  17. // Tests for ripgrep's multiline search support.
  18. mod multiline;
  19. // Regression tests.
  20. mod regression;