spaCy/spacy/tests/regression/test_issue617.py

13 lines
231 B
Python
Raw Normal View History

2017-01-10 21:24:10 +03:00
# coding: utf-8
from __future__ import unicode_literals
from ...vocab import Vocab
def test_issue617():
"""Test loading Vocab with string"""
2016-11-11 00:48:10 +03:00
try:
vocab = Vocab.load('/tmp/vocab')
except IOError:
pass