Passing in a string for the path should succeed.
(self)
| 93 | self.execute(self.data, 'utf-8.file') |
| 94 | |
| 95 | def test_string_path(self): |
| 96 | """ |
| 97 | Passing in a string for the path should succeed. |
| 98 | """ |
| 99 | path = 'utf-8.file' |
| 100 | self.execute(self.data, path) |
| 101 | |
| 102 | def test_pathlib_path(self): |
| 103 | """ |