kiwi-el8/test/unit/utils_size_test.py
Dan Čermák b015b91679
Stop inheriting from object
This is no longer required in Python3
2019-08-22 15:43:27 +02:00

18 lines
501 B
Python

from .test_helper import raises
from kiwi.utils.size import StringToSize
from kiwi.exceptions import KiwiSizeError
class TestStringToSize:
def test_to_bytes(self):
assert StringToSize.to_bytes('1m') == 1048576
assert StringToSize.to_bytes('1M') == 1048576
assert StringToSize.to_bytes('1g') == 1073741824
assert StringToSize.to_bytes('1G') == 1073741824
@raises(KiwiSizeError)
def test_to_bytes_wrong_format(self):
StringToSize.to_bytes('1mb')