| 
									
										
										
										
											2018-08-06 20:11:58 -04:00
										 |  |  | extern crate serde;
 | 
					
						
							|  |  |  | #[macro_use]
 | 
					
						
							|  |  |  | extern crate serde_derive;
 | 
					
						
							|  |  |  | extern crate serde_json;
 | 
					
						
							| 
									
										
										
										
											2016-09-09 22:58:30 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-06 20:11:58 -04:00
										 |  |  | // Macros useful for testing.
 | 
					
						
							|  |  |  | #[macro_use]
 | 
					
						
							|  |  |  | mod macros;
 | 
					
						
							| 
									
										
										
										
											2016-09-09 22:58:30 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-06 20:11:58 -04:00
										 |  |  | // Corpora.
 | 
					
						
							| 
									
										
										
										
											2016-09-09 22:58:30 -04:00
										 |  |  | mod hay;
 | 
					
						
							| 
									
										
										
										
											2018-08-06 20:11:58 -04:00
										 |  |  | // 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;
 |