summaryrefslogtreecommitdiff
path: root/unit_tests/helpers.py
blob: 0a5d68d0cee352b35df7355aab106462b1a397dc (plain)
1
2
3
4
5
6
def iter_compat(suite):
    try:
        suite.__iter__
        return suite
    except AttributeError:
        return suite._tests