summaryrefslogtreecommitdiff
path: root/tests/test_api.py
blob: f76a84296c90bbce8238be1335f014bc05349c0e (plain)
1
2
3
4
5
6
7
8
9
10
11
from cdsapi import api


def test_bytes_to_string():
    assert api.bytes_to_string(1) == '1'
    assert api.bytes_to_string(1 << 10) == '1K'
    assert api.bytes_to_string(1 << 20) == '1M'
    assert api.bytes_to_string(1 << 30) == '1G'
    assert api.bytes_to_string(1 << 40) == '1T'
    assert api.bytes_to_string(1 << 50) == '1P'