We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee9a8c9 commit 273b377Copy full SHA for 273b377
exercises/isogram/isogram_test.py
@@ -3,7 +3,7 @@
3
from isogram import is_isogram
4
5
6
-# Tests adapted from `problem-specifications//canonical-data.json` @ v1.6.0
+# Tests adapted from `problem-specifications//canonical-data.json` @ v1.7.0
7
8
class IsogramTest(unittest.TestCase):
9
@@ -31,6 +31,9 @@ def test_word_with_duplicated_letter_in_mixed_case_lowercase_first(self):
31
def test_hypothetical_isogrammic_word_with_hyphen(self):
32
self.assertIs(is_isogram("thumbscrew-japingly"), True)
33
34
+ def test_hypothetical_word_with_duplicate_character_following_hyphen(self):
35
+ self.assertIs(is_isogram("thumbscrew-jappingly"), False)
36
+
37
def test_isogram_with_duplicated_hyphen(self):
38
self.assertIs(is_isogram("six-year-old"), True)
39
0 commit comments