From b758239af852140a5e77ea09b0c172f207bef597 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Wed, 10 Apr 2013 17:02:13 +0000 Subject: [PATCH] Add implementation note on test_copy_data(). --- test_gnupg.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test_gnupg.py b/test_gnupg.py index a3c16a9..1cf8e32 100644 --- a/test_gnupg.py +++ b/test_gnupg.py @@ -230,7 +230,12 @@ class GPGTestCase(unittest.TestCase): def test_copy_data(self): - """Test that _copy_data() is able to duplicate byte streams""" + """ + XXX implement me + XXX add me to a test suite + + Test that _copy_data() is able to duplicate byte streams. + """ instream = io.BytesIO("This is a string of bytes mapped in memory.") outstream = str("And this one is just a string.")