diff options
Diffstat (limited to 'tests/test_cmd2.py')
-rw-r--r-- | tests/test_cmd2.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index 8394bd9f..adf47d31 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -627,12 +627,3 @@ def test_cmdloop_without_rawinput(): app.cmdloop() out = app.stdout.buffer assert out == expected - - -@pytest.mark.skipif(not cmd2.can_clip, - reason="CLI utility for interacting with PasteBuffer/ClipBoard is not available") -def test_pastebuffer_read_and_write(): - text_to_pb = 'This is a test ...' - cmd2.write_to_paste_buffer(text_to_pb) - text_from_pb = cmd2.get_paste_buffer() - assert text_from_pb == text_to_pb |