cpath tests, rely more on it

This commit is contained in:
Dima Gerasimov 2020-05-04 08:53:41 +01:00
parent 8b8a85e8c3
commit 55ac85c7e7
3 changed files with 10 additions and 13 deletions

View file

@ -5,7 +5,7 @@ import lzma
import io
import zipfile
from my.kython.kompress import kopen, kexists
from my.kython.kompress import kopen, kexists, CPath
import pytest # type: ignore
@ -41,10 +41,7 @@ def test_kexists(prepare, tmp_path: Path) -> None:
assert not kexists(tmp_path / 'nosuchzip.zip', 'path/in/archive')
def test_cpath():
# TODO
raise RuntimeError
# TODO FIXME these tests should def run on CI
# TODO get rid of all decode utf8?
def test_cpath(prepare, tmp_path: Path) -> None:
CPath(str(tmp_path / 'file' )).read_text() == 'just plaintext'
CPath( tmp_path / 'file.xz').read_text() == 'compressed text'
# TODO not sure about zip files??