idkrtm.com
Python Unit Testing using pytest - I Don't Know, Read The Manual
Unit testing is the act of testing a small unit of your code. Generally, this means you are testing a function or a class in isolation. If you are doing this unit testing manually, you simply run your function, then check and make sure it gave you the expected output. This is what you have …
Sean Conroy