commit ac68d8b7a16aa3bd6ba049e9cc56fec8e7f8f53b Author: vaydheesh Date: Mon Aug 12 22:36:58 2019 +0530 added: subprocess test for tagger diff --git a/tests/__init__.py b/tests/__init__.py index f49937e..3ea98fe 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -125,6 +125,13 @@ class TestSubProcess(unittest.TestCase): test_translate.test_en_spa() apertium.utils.wrappers_available = True + def test_tagger_en_subprocess(self): + apertium.utils.wrappers_available = False + test_tagger = TestTagger() + test_tagger.test_tagger_en() + test_tagger.test_tag_en() + apertium.utils.wrappers_available = True + class TestTranslate(unittest.TestCase): @unittest.skipIf(platform.system() == 'Windows', 'lrx-proc -m bug #25')