musou wrote
that is also how i feel about it! i haven't had time to progress to a level where i can build "real" stuff with it but the few toy programs i've built were very satisfying. i also love the convention rust has for organizing the tests with the relevant code.
flabberghaster OP wrote
I haven't even though about unit testing yet. I almost never unit test my utility scripts which is all I have built with it yet.
twovests wrote
When learning new languages, I throw assert
s all over the place. Learning to unit-test usually requires knowing more of the language than I already know, but assert
s provide 90% of that value by forcing the code to crash if my mental-model of the code does not match reality.
Viewing a single comment thread. View all comments