mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
16 lines
231 B
Python
16 lines
231 B
Python
import pytest
|
|
import StringIO
|
|
import cloudpickle
|
|
import pickle
|
|
|
|
|
|
@pytest.mark.models
|
|
def test_pickle_english(EN):
|
|
file_ = StringIO.StringIO()
|
|
cloudpickle.dump(EN, file_)
|
|
|
|
file_.seek(0)
|
|
|
|
loaded = pickle.load(file_)
|
|
|