6 lines
121 B
Rust
6 lines
121 B
Rust
|
|
#[test]
|
||
|
|
fn test_unit_module_loads() {
|
||
|
|
let module_name = module_path!();
|
||
|
|
assert!(module_name.contains("unit"));
|
||
|
|
}
|