aboutsummaryrefslogtreecommitdiff
path: root/tests/tests.rs
blob: fb4cd77171ca153e3663656b9f6d0b526bb4ad8a (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
#[cfg(feature = "std")]
#[macro_use]
extern crate lazy_static;
#[cfg(feature = "std")]
extern crate regex;
#[cfg(feature = "std")]
extern crate regex_automata;
#[cfg(feature = "std")]
extern crate serde;
#[cfg(feature = "std")]
extern crate serde_bytes;
#[cfg(feature = "std")]
#[macro_use]
extern crate serde_derive;
#[cfg(feature = "std")]
extern crate toml;

#[cfg(feature = "std")]
mod collection;
#[cfg(feature = "std")]
mod regression;
#[cfg(feature = "std")]
mod suite;
#[cfg(feature = "std")]
mod unescape;