From a1899b45442bc20ea0fe485e7b317521c53672f8 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Mon, 1 May 2017 04:19:44 -0300 Subject: [test] rename and add comments for clarity - Related: #8812 --- testing/tests/blobs/test_blobs.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/testing/tests/blobs/test_blobs.py b/testing/tests/blobs/test_blobs.py index c99cc572..288c9975 100644 --- a/testing/tests/blobs/test_blobs.py +++ b/testing/tests/blobs/test_blobs.py @@ -15,7 +15,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ -Tests for blobs handling. +Tests for blobs decrypter buffer. A component which is used as a decryption +sink during blob stream download. """ from twisted.trial import unittest from twisted.internet import defer @@ -25,7 +26,7 @@ from io import BytesIO from mock import Mock -class BlobTestCase(unittest.TestCase): +class DecrypterBufferCase(unittest.TestCase): class doc_info: doc_id = 'D-BLOB-ID' @@ -49,7 +50,7 @@ class BlobTestCase(unittest.TestCase): self.assertEquals(fd.getvalue(), 'rosa de foc') @defer.inlineCallbacks - def test_blob_manager_encrypted_upload(self): + def test_decrypt_uploading_encrypted_blob(self): @defer.inlineCallbacks def _check_result(uri, data, *args, **kwargs): -- cgit v1.2.3