##// END OF EJS Templates
Remove yield test that are not support by pytest anymore...
Remove yield test that are not support by pytest anymore And remove comparison of str/unicode as it is not relevant anymore as both are the same. We can now unpin pytest as well, which we should make sure is in release notes and in the conda-forge recipe As nose does not understand `@parametrize`, and the nose `@skip` decorator messes with that as well, we mark tests with parametrize as not-tests for iptests

File last commit:

r23044:7e78dda8
r26183:61376395
Show More
test_clipboard.py
21 lines | 658 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
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:
Srinivas Reddy Thatiparthy
remove unicode_type function
r23044 nt.assert_is_instance(a, str)