diff options
author | Vincent Ambo <mail@tazj.in> | 2018-09-26T16·44+0200 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2018-09-26T16·44+0200 |
commit | 3891ba84d5dbf335442c1c9e263823820f2a3327 (patch) | |
tree | b5749516e57c03350b6a4d2a6374c2ce765e356d /finito-postgres/src/lib.rs | |
parent | 7e5592f0d186dde6e3e10be51efce2bdfc7483d0 (diff) |
test(postgres): Add test for insert_machine and advance
Adds a test for the two most important functions in Finito's PostgreSQL backend. These actually require a local Postgres database to be available when running. Currently the connection details are hardcoded in the test.
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}; |