I would like to hear any information about how to unit test C code using Python.
I never done it, but you can either generate a Python wrapper (using
SWIG, Boost.Python, Pyrex ...) and then test the wrapper, or directly
call the C module functions using ctypes.
Comment