Exemplo n.º 1
0
def test_file_size_does_not_equal_to_other_type():
    assert FileSize(1) != 1
Exemplo n.º 2
0
def test_file_size_tb():
    filesize = FileSize(1458000256012)
    assert str(filesize) == "1.33 TB"
Exemplo n.º 3
0
def test_file_size_undefined():
    assert str(FileSize(sys.maxsize ** 10)) == "Undefined"
    assert str(FileSize(-1)) == "Undefined"
Exemplo n.º 4
0
def test_file_size_0():
    filesize = FileSize(0)
    assert str(filesize) == "0 Byte"
Exemplo n.º 5
0
def test_file_size_over_1k():
    filesize = FileSize(2048)
    assert str(filesize) == "2.00 KB"
Exemplo n.º 6
0
def test_file_size_for_1_char():
    filesize = FileSize(1)
    assert str(filesize) == "1 Byte"
Exemplo n.º 7
0
def test_file_size_human_readable_display():
    filesize = FileSize(999)
    assert str(filesize) == "999.00 Bytes"
Exemplo n.º 8
0
def test_get_size_in_bytes():
    fileview = FileView("Sample.java")
    assert fileview.size == FileSize(150)