def test_pack():
    assert FourCC("A") == b"A   "
    assert FourCC("AB") == b"AB  "
    assert FourCC("ABC") == b"ABC "
    assert FourCC("ABCD") == b"ABCD"
def test_pack_overflow():
    assert FourCC("ABCDE") == b"ABCD"