summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrebs <drebs@riseup.net>2017-10-10 20:04:24 -0300
committerdrebs <drebs@riseup.net>2017-10-10 20:04:24 -0300
commit5a6d04ca38736440e67b202a909b386fb0ba830d (patch)
tree170ff33ebc61c32c5e0efbbc49bea1ceda5d8090
parentc005102b53f7d97d38a80c21db68386bbf7b895f (diff)
[test] add docstring for blobs tests
-rw-r--r--tests/benchmarks/test_blobs_upload_download.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/benchmarks/test_blobs_upload_download.py b/tests/benchmarks/test_blobs_upload_download.py
index 35fdc2c6..1ec524dc 100644
--- a/tests/benchmarks/test_blobs_upload_download.py
+++ b/tests/benchmarks/test_blobs_upload_download.py
@@ -71,6 +71,9 @@ def create_blobs_download(amount, size):
@pytest.inlineCallbacks
@pytest.mark.benchmark(group=group)
def test(soledad_client, txbenchmark_with_setup):
+ """
+ Download many blobs of the same size.
+ """
client = soledad_client()
blob_payload = payload(size)
@@ -136,6 +139,9 @@ def create_blobs_upload(amount, size):
@pytest.inlineCallbacks
@pytest.mark.benchmark(group=group)
def test(soledad_client, txbenchmark_with_setup):
+ """
+ Upload many blobs of the same size.
+ """
client = soledad_client()
blob_payload = payload(size)