Test the create function with default arguments and a str path.
(self)
| 118 | self.assertTrue(os.path.isdir(fn)) |
| 119 | |
| 120 | def test_defaults_with_str_path(self): |
| 121 | """ |
| 122 | Test the create function with default arguments and a str path. |
| 123 | """ |
| 124 | rmtree(self.env_dir) |
| 125 | self.run_with_capture(venv.create, self.env_dir) |
| 126 | self._check_output_of_default_create() |
| 127 | |
| 128 | def test_defaults_with_pathlike(self): |
| 129 | """ |
nothing calls this directly
no test coverage detected