Add implementation note on test_copy_data().

feature/documentation-builds-html
Isis Lovecruft 2013-04-10 17:02:13 +00:00
parent 5f157c3c00
commit b758239af8
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 6 additions and 1 deletions

View File

@ -230,7 +230,12 @@ class GPGTestCase(unittest.TestCase):
def test_copy_data(self): 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.") instream = io.BytesIO("This is a string of bytes mapped in memory.")
outstream = str("And this one is just a string.") outstream = str("And this one is just a string.")