示例#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"]