See :meth:`Pytester.copy_example`.
(self, name=None)
| 141 | return legacy_path(self._pytester.mkpydir(name)) |
| 142 | |
| 143 | def copy_example(self, name=None) -> LEGACY_PATH: |
| 144 | """See :meth:`Pytester.copy_example`.""" |
| 145 | return legacy_path(self._pytester.copy_example(name)) |
| 146 | |
| 147 | def getnode(self, config: Config, arg) -> Optional[Union[Item, Collector]]: |
| 148 | """See :meth:`Pytester.getnode`.""" |
nothing calls this directly
no test coverage detected