(tmp_path)
| 193 | |
| 194 | |
| 195 | def test_Issue_1713(tmp_path): |
| 196 | rcpath = tmp_path / 'test_rcparams.rc' |
| 197 | rcpath.write_text('timezone: UTC', encoding='utf-8') |
| 198 | with mock.patch('locale.getpreferredencoding', return_value='UTF-32-BE'): |
| 199 | rc = mpl.rc_params_from_file(rcpath, True, False) |
| 200 | assert rc.get('timezone') == 'UTC' |
| 201 | |
| 202 | |
| 203 | def test_animation_frame_formats(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…