##// END OF EJS Templates
Add simple smoketest for clipboard access
Thomas Kluyver -
Show More
@@ -0,0 +1,20 b''
1 import nose.tools as nt
2
3 from IPython.core.error import TryNext
4 from IPython.lib.clipboard import ClipboardEmpty
5 from IPython.utils.py3compat import unicode_type
6
7 def test_clipboard_get():
8 # Smoketest for clipboard access - we can't easily guarantee that the
9 # clipboard is accessible and has something on it, but this tries to
10 # exercise the relevant code anyway.
11 try:
12 a = get_ipython().hooks.clipboard_get()
13 except ClipboardEmpty:
14 # Nothing in clipboard to get
15 pass
16 except TryNext:
17 # No clipboard access API available
18 pass
19 else:
20 nt.assert_is_instance(a, unicode_type)
General Comments 0
You need to be logged in to leave comments. Login now