We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cea4ae6 commit 3519060Copy full SHA for 3519060
1 file changed
exercises/pangram/pangram_test.py
@@ -14,6 +14,10 @@ def test_valid_pangram(self):
14
self.assertTrue(
15
is_pangram('the quick brown fox jumps over the lazy dog'))
16
17
+ def test_invalid_pangram(self):
18
+ self.assertFalse(
19
+ is_pangram('the quick brown fish jumps over the lazy dog'))
20
+
21
def test_missing_x(self):
22
self.assertFalse(is_pangram('a quick movement of the enemy will '
23
'jeopardize five gunboats'))
0 commit comments