MCPcopy Create free account
hub / github.com/EntilZha/PyFunctional / test_xz_csv

Method test_xz_csv

functional/test/test_streams.py:113–118  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

111 self.seq.csv(1)
112
113 def test_xz_csv(self):
114 result = self.seq.csv("functional/test/data/test.csv.xz").to_list()
115 expect = [["1", "2", "3", "4"], ["a", "b", "c", "d"]]
116 self.assertEqual(expect, result)
117 with self.assertRaises(ValueError):
118 self.seq.csv(1)
119
120 def test_jsonl(self):
121 result_0 = self.seq.jsonl("functional/test/data/test.jsonl").to_list()

Callers

nothing calls this directly

Calls 2

to_listMethod · 0.80
csvMethod · 0.80

Tested by

no test coverage detected