CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
test_unicode_utils.py11 linesDownload Raw Back to tests
1from setuptools import unicode_utils2 3 4def test_filesys_decode_fs_encoding_is_None(monkeypatch):5    """6    Test filesys_decode does not raise TypeError when7    getfilesystemencoding returns None.8    """9    monkeypatch.setattr('sys.getfilesystemencoding', lambda: None)10    unicode_utils.filesys_decode(b'test')11 
Aluode/PerceptionLabPortable · CoolFace