##// END OF EJS Templates
Remove unused _find_cmd...
Remove unused _find_cmd It was replaced with shutil/py3compat.which in f42c9edb152ac392caa39fe9e50373ef0ec42a55

File last commit:

r26912:995c8448
r26993:8a04efad
Show More
test_clipboard.py
19 lines | 629 B | text/x-python | PythonLexer
from IPython.core.error import TryNext
from IPython.lib.clipboard import ClipboardEmpty
from IPython.testing.decorators import skip_if_no_x11
@skip_if_no_x11
def test_clipboard_get():
# Smoketest for clipboard access - we can't easily guarantee that the
# clipboard is accessible and has something on it, but this tries to
# exercise the relevant code anyway.
try:
a = get_ipython().hooks.clipboard_get()
except ClipboardEmpty:
# Nothing in clipboard to get
pass
except TryNext:
# No clipboard access API available
pass
else:
assert isinstance(a, str)