1 2 3 4 5 6 7
use publish_crate_with_github_actions_demo::utils::add; #[test] fn feature() { let sum = add(1, 1); assert_eq!(sum, 2); }