(self)
| 37 | self.assertEqual(len(result.chunk_set.chunks), 3) |
| 38 | self.assertEqual(len(result.global_summary.citations), 3) |
| 39 | |
| 40 | def test_unchanged_producer_configs_create_stable_ids(self) -> None: |
| 41 | first = build_paper_result() |
| 42 | second = build_paper_result() |
| 43 | |
| 44 | self.assertEqual(first.source_revision.id, second.source_revision.id) |
| 45 | self.assertEqual(first.chunk_set.id, second.chunk_set.id) |
| 46 | self.assertEqual(first.global_summary.id, second.global_summary.id) |
| 47 | self.assertEqual( |
| 48 | [chunk.chunk_id for chunk in first.chunk_set.chunks], |
nothing calls this directly
no test coverage detected