Ejemplo n.º 1
0
 def test_upper_and_lower_case_versions_of_the_same_character(self):
     self.assertIs(
         is_pangram('the quick brown fox jumped over the lazy FOX'), False)
Ejemplo n.º 2
0
 def test_sentence_empty(self):
     self.assertIs(is_pangram(''), False)
Ejemplo n.º 3
0
 def test_missing_letters_replaced_by_numbers(self):
     self.assertIs(
         is_pangram('7h3 qu1ck brown fox jumps ov3r 7h3 lazy dog'), False)
Ejemplo n.º 4
0
 def test_pangram_with_mixedcase_and_punctuation(self):
     self.assertIs(is_pangram('"Five quacking Zephyrs jolt my wax bed."'),
                   True)
Ejemplo n.º 5
0
 def test_pangram_with_numbers(self):
     self.assertIs(
         is_pangram('the 1 quick brown fox jumps over the 2 lazy dogs'),
         True)
Ejemplo n.º 6
0
 def test_pangram_with_underscores(self):
     self.assertIs(
         is_pangram('the_quick_brown_fox_jumps_over_the_lazy_dog'), True)
Ejemplo n.º 7
0
 def test_another_missing_character_x(self):
     self.assertIs(
         is_pangram('the quick brown fish jumps over the lazy dog'), False)
Ejemplo n.º 8
0
 def test_missing_character_x(self):
     self.assertIs(
         is_pangram('a quick movement of the enemy will '
                    'jeopardize five gunboats'), False)
Ejemplo n.º 9
0
 def test_pangram_with_only_lower_case(self):
     self.assertIs(
         is_pangram('the quick brown fox jumps over the lazy dog'), True)