예제 #1
0
파일: test_cli.py 프로젝트: kokizzu/spaCy
def test_string_to_list_intify(value):
    assert string_to_list(value, intify=False) == ["1", "2", "3"]
    assert string_to_list(value, intify=True) == [1, 2, 3]
예제 #2
0
파일: test_cli.py 프로젝트: kokizzu/spaCy
def test_string_to_list(value):
    assert string_to_list(value,
                          intify=False) == ["parser", "textcat", "tagger"]