awips2/pythonPackages/nose/unit_tests/helpers.py
2016-06-27 15:10:22 -05:00

6 lines
132 B
Python

def iter_compat(suite):
try:
suite.__iter__
return suite
except AttributeError:
return suite._tests