##// END OF EJS Templates
Turn on MathJax Safe extension...
Turn on MathJax Safe extension Not having this on allows mathjax links in Markdown cells which can execute javascript that are not sanitized by caja, for example: $E \href{javascript:alert("Einstein says so!")}{=} mc^2$ See http://docs.mathjax.org/en/latest/safe-mode.html for more details.

File last commit:

r13518:441f40ae
r21454:a6b56ebf
Show More
test_clipboard.py
22 lines | 716 B | text/x-python | PythonLexer
Thomas Kluyver
Add simple smoketest for clipboard access
r13481 import nose.tools as nt
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 from IPython.utils.py3compat import unicode_type
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:
nt.assert_is_instance(a, unicode_type)