Add regression test for #1654

This commit is contained in:
ines 2017-11-28 20:27:54 +01:00
parent 2e50dbb9d7
commit b62739fbfe
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
# coding: utf8
from __future__ import unicode_literals
import pytest
from ...language import Language
from ...vocab import Vocab
@pytest.mark.xfail
def test_issue1654():
nlp = Language(Vocab())
assert not nlp.pipeline
nlp.add_pipe(lambda doc: doc, name='1')
nlp.add_pipe(lambda doc: doc, name='2', after='1')
nlp.add_pipe(lambda doc: doc, name='3', after='2')
assert nlp.pipe_names == ['1', '2', '3']