(self)
| 136 | self.assertEqual(expect_0, result_0) |
| 137 | |
| 138 | def test_xz_jsonl(self): |
| 139 | result_0 = self.seq.jsonl("functional/test/data/test.jsonl.xz").to_list() |
| 140 | expect_0 = [[1, 2, 3], {"a": 1, "b": 2, "c": 3}] |
| 141 | self.assertEqual(expect_0, result_0) |
| 142 | |
| 143 | def test_json(self): |
| 144 | list_test_path = "functional/test/data/test_list.json" |