We all know testing is important. And, I hope, it might even be familiar. You’re coding away and catch yourself thinking “I should probably test this”. And before you know it you’ve mashed on your keyboard and there appears #[cfg(test)]modtests{...} These are unit tests which are super easy to setup. No added dependencies, no added tooling. But what about integration tests? Rust supports those too, which you probably already know. They’re only slightly more involved to setup so they...