mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
* Fix tempfile in test
This commit is contained in:
parent
f11030aadc
commit
725344d349
|
@ -5,6 +5,7 @@ import pickle
|
|||
from spacy.strings import StringStore
|
||||
|
||||
import pytest
|
||||
import tempfile
|
||||
|
||||
import io
|
||||
|
||||
|
@ -95,10 +96,9 @@ def test_pickle_string_store(sstore):
|
|||
|
||||
def test_dump_load(sstore):
|
||||
id_ = sstore[u'qqqqq']
|
||||
loc = '/tmp/sstore.json'
|
||||
with io.open(loc, 'w', encoding='utf8') as file_:
|
||||
with tempfile.TemporaryFile() as file_:
|
||||
sstore.dump(file_)
|
||||
new_store = StringStore()
|
||||
with io.open(loc, 'r', encoding='utf8') as file_:
|
||||
file_.seek(0)
|
||||
new_store = StringStore()
|
||||
new_store.load(file_)
|
||||
assert new_store[id_] == u'qqqqq'
|
||||
|
|
Loading…
Reference in New Issue
Block a user