Say you have a set of determistic business rules in an admin system that you want to check. The rules can be based on numeric, boolean, categorical, etc. values, e.g.:
if product in ['x','y','z']:
if age > 30:
if amount < 100000:
rule = 'A'
elif product == 'a':
rule = 'B'
elif ....
Possible checks can be based on a file with possible values or a check that compares the decision tree as a whole provided you have the analysis in a certain format.
You can program these sort of tests, but before starting something from scratch I'm searching if there are some python packages that can help in this sort of work or an approach for such an issue.