Files
advotracker/crates/advotrackerd/tests/integration_test.rs
Ralf Zerres 4c88167bef advotracker: restructure project using crate tree
* advotracker: the framework crate
* crate/advotrackerdb: crate implementing the database backend
* crate/advotrackerd: the backend daemon
* crate/adovtracker: the application (CLI and GUI)

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
2021-03-08 04:32:11 +01:00

8 lines
110 B
Rust

//use advotracker;
#[test]
fn integration_add_two() {
assert_eq!(4, advotracker_backend::add_two(2));
}