Unit testing in python?
- by yossi.ittach
Hey - I'm new to python , and I'm having a hard time grasping the concept of Unit testing in python.
I'm coming from Java - so unit testing makes sense because - well , there you actually have a unit - A Class. But a Python class is not necessarily the same as a Java class , and the way I use Python - as a scripting language - is more functional then OOP - So what do you "unit test" in Python ? A flow?
Thanks!