library-rust/tests/first_test.rs

11 lines
248 B
Rust
Raw Permalink Normal View History

2024-06-16 04:48:34 +00:00
#[cfg(test)]
mod tests {
use library_rust::utils;
#[test]
fn test_first() {
2024-06-16 09:57:35 +00:00
let result: String = utils::first_utils::first::public_function();
2024-06-16 04:48:34 +00:00
assert!(result.contains("called public func `public_function()`"));
}
2024-06-16 09:57:35 +00:00
}