コード例 #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"]