Skip to content

Instantly share code, notes, and snippets.

@Swizec
Created May 25, 2017 21:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Swizec/92c07183a7d811d6e62aae84f81f1cfe to your computer and use it in GitHub Desktop.
Save Swizec/92c07183a7d811d6e62aae84f81f1cfe to your computer and use it in GitHub Desktop.
# You don't need tests
Unit tests are pointless. Integration tests are hard. Clicky tests are king.
You write a piece of code and you *know* it works. You just wrote it. You just ran it. You just saw it do everything you thought to try. Any unit or integration tests would have confirmed this.
Your PM gets your code and tries it out. They find a bunch of things you forgot. Bits of the spec that you missed, nuances in edge cases you didn't think of, strange things even the PM didn't think of.
The designer finds a bunch of crap that should've been obvious, but you're not a designer so you didn't think it was obvious.
You get back to your code. Any tests you would have written wouldn't have caught any of this stuff. You didn't think of it, you wouldn't have written a test. Even if you did assume you aren't perfect and needed tests. You don't need tests.
You fix the things. You test the things. Sometimes you test something twice because you notice fixing it broke something else. Keeping all the balls in the air is annoying, but totally doable. You don't need tests.
Your PM says 👍🏼. Your designer says gorgeous.
Your QA team gets the code. You tell them which manual test cases to do. It takes them half a day, but your code is good. You don't need tests.
Your user gets your code. It breaks. They did a thing that you didn't think to try, your PM didn't think was related, and nobody told QA to try.
Your user is nice enough to file a Usersnap report.
*"Nonsense"*, you say, *"one in a million case. I can't reproduce that."*
Five more users find the bug. You notice a pattern. Your PM says this is now a production issue and should be fixed immediately.
You drop everything you were doing. You fix the thing. You test the thing. Sometimes you test something twice because you notice fixing it broke something else. Keeping all the balls in the air is annoying, but totally doable. You don't need tests.
Your PM says 👍🏼. You add a line item to QA's plate. It takes them half a day to test everything. QA says 👍🏼. Your code goes to production.
Your users say nothing. Quiet users are good users. You don't need tests.
Six months pass.
It is time to refactor your code. You would kill for some tests.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment