aboutsummaryrefslogtreecommitdiff
path: root/bleach/tests/tools.py
blob: 3ae047e92326d031edb4c29edeb2e993eda8279a (plain)
1
2
3
4
5
6
7
def in_(l, a, msg=None):
    """Shorthand for 'assert a in l, "%r not in %r" % (a, l)
    """
    if a not in l:
        raise AssertionError(msg or "%r not in %r" % (a, l))