Rust Course Updates: Automated Testing Ensures Smooth Upgrades
Upgrading Rust projects is now safer thanks to automated tools, unit-tests & CI system ensuring code still passes tests & abides by rules.
This means we have a new and probably stricter version of Clippy, the built-in linter. This means I am now going over the 764 examples I have in my Rust course, the 100 or examples I have on the Rust 🦀 Maven web site, and the Rust projects I have been developing. I go over them to make sure they still pass their tests and still abide by all the rules. (or at least the ones that I have opted out from) Luckily this is done mostly automatically thanks to the hashtag#automated tools, the unit-tests, and the CI system I added ahead of time. Did I already mention that hashtag#testing, especially au...