Ejemplo n.º 1
0
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
Ejemplo n.º 2
0
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