##// END OF EJS Templates
Fix configuration before initialization
Fix configuration before initialization

File last commit:

r27747:f5d4e0ac
r28097:23a83242
Show More
test_clipboard.py
20 lines | 630 B | text/x-python | PythonLexer
Thomas Kluyver
Add simple smoketest for clipboard access
r13481 from IPython.core.error import TryNext
from IPython.lib.clipboard import ClipboardEmpty
Thomas Kluyver
Skip clipboard test on *nix systems if headless....
r13518 from IPython.testing.decorators import skip_if_no_x11
Thomas Kluyver
Add simple smoketest for clipboard access
r13481
Matthias Bussonnier
MAINT: run black on files that ends up in a single line change....
r27747
Thomas Kluyver
Skip clipboard test on *nix systems if headless....
r13518 @skip_if_no_x11
Thomas Kluyver
Add simple smoketest for clipboard access
r13481 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:
Samuel Gaist
[lib][tests][clipboard] Remove nose
r26912 assert isinstance(a, str)