| Current Path : /opt/imh-python/lib/python3.9/site-packages/IPython/utils/tests/ |
| Current File : //opt/imh-python/lib/python3.9/site-packages/IPython/utils/tests/test_decorators.py |
from IPython.utils import decorators
def test_flag_calls():
@decorators.flag_calls
def f():
pass
assert not f.called
f()
assert f.called