def test_sanitize_content_filename__platform_dependent(filename, win_expected, non_win_expected): """ Test inputs where the result is different for Windows and non-Windows. """ if sys.platform == 'win32': expected = win_expected else: expected = non_win_expected assert sanitize_content_filename(filename) == expected
def test_sanitize_content_filename(filename, expected): """ Test inputs where the result is the same for Windows and non-Windows. """ assert sanitize_content_filename(filename) == expected