def test_format_list_output():
    assert cleanup_chronos_jobs.format_list_output("Successfully Removed:", ['foo', 'bar', 'baz']) \
        == "Successfully Removed:\n  foo\n  bar\n  baz"
def test_format_list_output():
    assert (
        cleanup_chronos_jobs.format_list_output("Successfully Removed:", ["foo", "bar", "baz"])
        == "Successfully Removed:\n  foo\n  bar\n  baz"
    )
def test_format_list_output():
    assert cleanup_chronos_jobs.format_list_output("Successfully Removed:", ['foo', 'bar', 'baz']) \
        == "Successfully Removed:\n  foo\n  bar\n  baz"
Exemple #4
0
def test_format_list_output():
    assert (cleanup_chronos_jobs.format_list_output(
        "Successfully Removed:",
        ["foo", "bar", "baz"]) == "Successfully Removed:\n  foo\n  bar\n  baz")