Return captured log lines, if log capturing is enabled. .. versionadded:: 3.5
(self)
| 116 | |
| 117 | @property |
| 118 | def caplog(self) -> str: |
| 119 | """Return captured log lines, if log capturing is enabled. |
| 120 | |
| 121 | .. versionadded:: 3.5 |
| 122 | """ |
| 123 | return "\n".join( |
| 124 | content for (prefix, content) in self.get_sections("Captured log") |
| 125 | ) |
| 126 | |
| 127 | @property |
| 128 | def capstdout(self) -> str: |
nothing calls this directly
no test coverage detected