summaryrefslogtreecommitdiffstats
path: root/tests/tests.rs
blob: ceff7bc2f144911cb17727aedd0f9012569c2444 (plain)
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
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;

// Macros useful for testing.
#[macro_use]
mod macros;

// Corpora.
mod hay;
// Utilities for making tests nicer to read and easier to write.
mod util;

// Tests related to most features in ripgrep. If you're adding something new
// to ripgrep, tests should probably go in here.
mod feature;
// Tests for ripgrep's JSON format.
mod json;
// Miscellaneous tests grouped in a haphazard manner. Try not to add more.
mod misc;
// Tests for ripgrep's multiline search support.
mod multiline;
// Regression tests.
mod regression;