from suno_utils.worker.video_renderer import contains_chinese


def test_contains_chinese():
    assert contains_chinese("汉字")
    assert not contains_chinese("abc")
