Passing in a pathlib.PurePath object for the path should succeed.
(self)
| 100 | self.execute(self.data, path) |
| 101 | |
| 102 | def test_pathlib_path(self): |
| 103 | """ |
| 104 | Passing in a pathlib.PurePath object for the path should succeed. |
| 105 | """ |
| 106 | path = pathlib.PurePath('utf-8.file') |
| 107 | self.execute(self.data, path) |
| 108 | |
| 109 | def test_importing_module_as_side_effect(self): |
| 110 | """ |