From 21256000b26ef46df64e691f1e4dd3510bd3c6a1 Mon Sep 17 00:00:00 2001 From: Pablo Schenkel Date: Fri, 22 Dec 2023 11:00:49 +0100 Subject: [PATCH] test divisionbyzero added --- src/wortsalat/identify_tags.py | 3 --- tests/test_analyze_wortsalat.py | 4 ++++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/wortsalat/identify_tags.py b/src/wortsalat/identify_tags.py index 0c4e033..ce9ff0f 100644 --- a/src/wortsalat/identify_tags.py +++ b/src/wortsalat/identify_tags.py @@ -34,10 +34,7 @@ def identify_tags(tag: str, text: str) -> Dict[str, List[str]]: words_with_tag = list() - print(tagged_words) - for word in tagged_words: - print(word) if word[2] == tag: words_with_tag.append(word) diff --git a/tests/test_analyze_wortsalat.py b/tests/test_analyze_wortsalat.py index 0fe81a5..7a2f33e 100644 --- a/tests/test_analyze_wortsalat.py +++ b/tests/test_analyze_wortsalat.py @@ -4,6 +4,10 @@ def test_analyze_words(): text = "Hallo leute wir sind heute auf einem Bauernhof. Alle Tiere sind in Ordnung nur eins ist doof. Das Rapphuhn. Das rappt nun." analyze_wortsalat(text) +def test_analyze_wordsalat_division_by_zero(): + text = "Es kann nicht durch null geteilt werden." + analyze_wortsalat(text) + def test_print_wortsalat_small(): text = "Hallo leute wir sind heute auf einem Bauernhof. Alle Tiere sind in Ordnung nur eins ist doof. Das Rapphuhn. Das rappt nun." print_wortsalat_small(text)