Test the create function with default arguments and a str path.
(self)
| 122 | # TODO: RUSTPYTHON |
| 123 | @unittest.expectedFailure |
| 124 | def test_defaults_with_str_path(self): |
| 125 | """ |
| 126 | Test the create function with default arguments and a str path. |
| 127 | """ |
| 128 | rmtree(self.env_dir) |
| 129 | self.run_with_capture(venv.create, self.env_dir) |
| 130 | self._check_output_of_default_create() |
| 131 | |
| 132 | # TODO: RUSTPYTHON |
| 133 | @unittest.expectedFailure |
nothing calls this directly
no test coverage detected