MCPcopy Index your code
hub / github.com/python/cpython / test_read1_0

Method test_read1_0

Lib/test/test_zstd.py:1978–1980  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1976 self.assertEqual(f.read1(), b"")
1977
1978 def test_read1_0(self):
1979 with ZstdFile(io.BytesIO(COMPRESSED_DAT)) as f:
1980 self.assertEqual(f.read1(0), b"")
1981
1982 def test_read1_10(self):
1983 with ZstdFile(io.BytesIO(COMPRESSED_DAT)) as f:

Callers

nothing calls this directly

Calls 3

ZstdFileClass · 0.90
assertEqualMethod · 0.45
read1Method · 0.45

Tested by

no test coverage detected