1#[cfg(test)]
5#[macro_use]
6extern crate quickcheck;
7
8#[cfg(test)]
9#[allow(unused_imports)]
10#[macro_use]
11extern crate mockall;
12
13mod test;
14
15pub mod common;
16pub mod stats;
17#[cfg(feature = "systemd")]
18pub mod systemd;
19#[cfg(not(feature = "systemd"))]
20#[path = "stub/systemd/mod.rs"]
21pub mod systemd;
22pub mod test_manager;
23#[cfg(feature = "v1")]
24pub mod v1;
25#[cfg(not(feature = "v1"))]
26#[path = "stub/v1/mod.rs"]
27pub mod v1;
28#[cfg(feature = "v2")]
29pub mod v2;
30#[cfg(not(feature = "v2"))]
31#[path = "stub/v2/mod.rs"]
32pub mod v2;