Viewing a single comment thread. View all comments

4

flabberghaster 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.

3

twovests wrote

When learning new languages, I throw asserts all over the place. Learning to unit-test usually requires knowing more of the language than I already know, but asserts provide 90% of that value by forcing the code to crash if my mental-model of the code does not match reality.