D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
2
/
task
/
2
/
root
/
opt
/
imh-python
/
lib
/
python3.9
/
site-packages
/
IPython
/
lib
/
tests
/
Filename :
test_clipboard.py
back
Copy
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)