Test the create function with default arguments and a path-like path.
(self)
| 126 | self._check_output_of_default_create() |
| 127 | |
| 128 | def test_defaults_with_pathlike(self): |
| 129 | """ |
| 130 | Test the create function with default arguments and a path-like path. |
| 131 | """ |
| 132 | rmtree(self.env_dir) |
| 133 | self.run_with_capture(venv.create, FakePath(self.env_dir)) |
| 134 | self._check_output_of_default_create() |
| 135 | |
| 136 | def _check_output_of_default_create(self): |
| 137 | self.isdir(self.bindir) |
nothing calls this directly
no test coverage detected