summaryrefslogtreecommitdiff
path: root/tests/isolated/patcher_monkey_patch_unknown_module.py
blob: 8b832000ba3cd161ae70560a51a2175eac76f147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from __future__ import print_function

# no standard tests in this file, ignore
__test__ = False

if __name__ == '__main__':
    import eventlet
    err = ''
    try:
        eventlet.monkey_patch(finagle=True)
    except TypeError as e:
        err = str(e)
    assert 'finagle' in err, err
    print('pass')