Beispiel #1
0
    def test_analyze_processed_response(self):
        for word in self.VALID_WORDS:
            analyzer = NounMorphologicalAnalyzer(word)
            analyzer.analyze()

            assert analyzer.analyze() is None
            assert analyzer.analyze() is None
Beispiel #2
0
    def test_analyze_word(self):
        for word in self.VALID_WORDS:
            analyzer = NounMorphologicalAnalyzer(word)
            analyzer.analyze()

            assert isinstance(analyzer.word, Noun)
            assert analyzer.word.content == word
Beispiel #3
0
    def test_analyze_processed(self):
        for word in self.VALID_WORDS:
            analyzer = NounMorphologicalAnalyzer(word)

            assert analyzer.processed is False

            analyzer.analyze()

            assert analyzer.processed is True
Beispiel #4
0
    def test_invalid_analyze_word(self):
        for word in self.INVALID_WORDS:
            analyzer = NounMorphologicalAnalyzer(word)
            analyzer.analyze()

            assert analyzer.word is None
Beispiel #5
0
    def test_invalid_analyze(self):
        for word in self.INVALID_WORDS:
            analyzer = NounMorphologicalAnalyzer(word)
            result = analyzer.analyze()

            assert not result
Beispiel #6
0
    def test_analyze_return_true(self):
        for word in self.VALID_WORDS:
            analyzer = NounMorphologicalAnalyzer(word)

            assert analyzer.analyze()
Beispiel #7
0
    def test_analyze_match(self):
        for word in self.VALID_WORDS:
            analyzer = NounMorphologicalAnalyzer(word)
            analyzer.analyze()

            assert analyzer.matches is not None