I have a python script called script.py, this need a input A and generate a output B.
A -> script.py -> B
every time I add a new feature, I need to check that the program generate the same output.
how I can automated this tests type ?
what is the name of this tests type ?
exists some python module for this tests type ?
mv B _B; python script.py A; diff B _B