(self)
| 146 | assert not b.is_chunk |
| 147 | |
| 148 | def test_chunk_label(self) -> None: |
| 149 | b = Batch(file_path="big.py", content="chunk", start_line=50, end_line=100) |
| 150 | assert b.is_chunk |
| 151 | assert "50" in b.file_label and "100" in b.file_label |
| 152 | |
| 153 | |
| 154 | # --------------------------------------------------------------------------- |