diff options
Diffstat (limited to 'finito-postgres/src/lib.rs')
-rw-r--r-- | finito-postgres/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/finito-postgres/src/lib.rs b/finito-postgres/src/lib.rs index 80200f8a43cd..5ed9693bc9b3 100644 --- a/finito-postgres/src/lib.rs +++ b/finito-postgres/src/lib.rs @@ -13,6 +13,9 @@ extern crate serde; extern crate serde_json; extern crate uuid; +#[cfg(test)] mod tests; +#[cfg(test)] extern crate finito_door; + mod error; pub use error::{Result, Error}; |