Add text_file_b fixture using BytesIO

This commit is contained in:
Ines Montani 2017-01-13 02:23:50 +01:00
parent 49febd8c62
commit 4bb5b89ee4
1 changed files with 5 additions and 1 deletions

View File

@ -16,7 +16,7 @@ from ..lemmatizer import Lemmatizer
from ..attrs import ORTH, TAG, HEAD, DEP
from ..util import match_best_version, get_data_path
from io import StringIO
from io import StringIO, BytesIO
from pathlib import Path
import os
import pytest
@ -79,6 +79,10 @@ def lemmatizer(path):
def text_file():
return StringIO()
@pytest.fixture
def text_file_b():
return BytesIO()
@pytest.fixture
def path():