How do I unit test python dataframes?
I have functions that have input and output as dataframes. Almost every function I have does this. Now if i want to unit test this what is the best method of doing it? Does it seem a bit of an effort to create a new dataframe (with values populated) for every function?
Are there any materials you can refer me to? Should you write unit tests for these functions?