From 52ef51f36e005a5d7033c21d08cfae17a561ebca Mon Sep 17 00:00:00 2001 From: Kit Date: Thu, 25 Jan 2018 22:56:48 +0100 Subject: [PATCH] Add test for issue #1889 --- spacy/tests/regression/test_issue1889.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 spacy/tests/regression/test_issue1889.py diff --git a/spacy/tests/regression/test_issue1889.py b/spacy/tests/regression/test_issue1889.py new file mode 100644 index 000000000..a0e20abcf --- /dev/null +++ b/spacy/tests/regression/test_issue1889.py @@ -0,0 +1,11 @@ +# coding: utf-8 +from __future__ import unicode_literals +from ...lang.lex_attrs import is_stop +from ...lang.en.stop_words import STOP_WORDS + +import pytest + + +@pytest.mark.parametrize('word', ['the']) +def test_lex_attrs_stop_words_case_sensitivity(word): + assert is_stop(word, STOP_WORDS) == is_stop(word.upper(), STOP_WORDS)