use test_publish_cdbb::add; mod common; #[test] fn it_adds_two() { let (a, b) = common::setup(); let res = add(a, b); assert_eq!(res, 7); }