Dots are not allowed. If it's not too much code, you can use inline modules, otherwise you have to stick to:
action/
attack/test/
mod.rs
And then:
mod attack::test;
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
Dots are not allowed. If it's not too much code, you can use inline modules, otherwise you have to stick to:
action/
attack/test/
mod.rs
And then:
mod attack::test;
Thanks, yeah it felt like too many tests to keep in file. I can live with that directory approach. TY!