2023-07-15 15:27:31 -07:00
|
|
|
# These tests are auto-generated with test data from:
|
|
|
|
|
# https://github.com/exercism/problem-specifications/tree/main/exercises/pangram/canonical-data.json
|
2023-07-16 15:09:14 -07:00
|
|
|
# File last updated on 2023-07-16
|
2023-07-15 15:27:31 -07:00
|
|
|
|
2015-11-22 19:18:13 +01:00
|
|
|
import unittest
|
|
|
|
|
|
2021-01-31 16:49:12 -05:00
|
|
|
from pangram import (
|
|
|
|
|
is_pangram,
|
|
|
|
|
)
|
2015-11-22 19:18:13 +01:00
|
|
|
|
2018-01-09 10:56:42 -08:00
|
|
|
|
2019-08-16 11:54:28 -04:00
|
|
|
class PangramTest(unittest.TestCase):
|
|
|
|
|
def test_empty_sentence(self):
|
|
|
|
|
self.assertIs(is_pangram(""), False)
|
2015-11-22 19:18:13 +01:00
|
|
|
|
2019-07-11 15:16:31 +02:00
|
|
|
def test_perfect_lower_case(self):
|
2019-08-16 11:54:28 -04:00
|
|
|
self.assertIs(is_pangram("abcdefghijklmnopqrstuvwxyz"), True)
|
2018-01-09 10:56:42 -08:00
|
|
|
|
2019-07-11 15:16:31 +02:00
|
|
|
def test_only_lower_case(self):
|
2019-08-16 11:54:28 -04:00
|
|
|
self.assertIs(is_pangram("the quick brown fox jumps over the lazy dog"), True)
|
2015-11-22 19:18:13 +01:00
|
|
|
|
2019-07-11 15:16:31 +02:00
|
|
|
def test_missing_the_letter_x(self):
|
2017-10-14 08:27:39 +00:00
|
|
|
self.assertIs(
|
2019-08-16 11:54:28 -04:00
|
|
|
is_pangram("a quick movement of the enemy will jeopardize five gunboats"),
|
|
|
|
|
False,
|
|
|
|
|
)
|
2015-11-22 19:18:13 +01:00
|
|
|
|
2019-08-16 11:54:28 -04:00
|
|
|
def test_missing_the_letter_h(self):
|
|
|
|
|
self.assertIs(is_pangram("five boxing wizards jump quickly at it"), False)
|
2016-07-20 13:03:07 -07:00
|
|
|
|
2019-07-11 15:16:31 +02:00
|
|
|
def test_with_underscores(self):
|
2019-08-16 11:54:28 -04:00
|
|
|
self.assertIs(is_pangram("the_quick_brown_fox_jumps_over_the_lazy_dog"), True)
|
2016-07-20 13:03:07 -07:00
|
|
|
|
2019-07-11 15:16:31 +02:00
|
|
|
def test_with_numbers(self):
|
2017-10-14 08:27:39 +00:00
|
|
|
self.assertIs(
|
2019-08-16 11:54:28 -04:00
|
|
|
is_pangram("the 1 quick brown fox jumps over the 2 lazy dogs"), True
|
|
|
|
|
)
|
2016-07-20 13:03:07 -07:00
|
|
|
|
|
|
|
|
def test_missing_letters_replaced_by_numbers(self):
|
2019-08-16 11:54:28 -04:00
|
|
|
self.assertIs(is_pangram("7h3 qu1ck brown fox jumps ov3r 7h3 lazy dog"), False)
|
2016-07-20 13:03:07 -07:00
|
|
|
|
2019-07-11 15:16:31 +02:00
|
|
|
def test_mixed_case_and_punctuation(self):
|
2019-08-16 11:54:28 -04:00
|
|
|
self.assertIs(is_pangram('"Five quacking Zephyrs jolt my wax bed."'), True)
|
2015-11-22 19:18:13 +01:00
|
|
|
|
2022-02-09 16:03:14 -08:00
|
|
|
def test_a_m_and_a_m_are_26_different_characters_but_not_a_pangram(self):
|
|
|
|
|
self.assertIs(is_pangram("abcdefghijklm ABCDEFGHIJKLM"), False)
|
2015-11-22 19:18:13 +01:00
|
|
|
|
2020-03-19 10:40:24 -04:00
|
|
|
# Additional tests for this track
|
|
|
|
|
|
|
|
|
|
def test_sentence_without_lower_bound(self):
|
|
|
|
|
self.assertIs(is_pangram("bcdefghijklmnopqrstuvwxyz"), False)
|
|
|
|
|
|
|
|
|
|
def test_sentence_without_upper_bound(self):
|
|
|
|
|
self.assertIs(is_pangram("abcdefghijklmnopqrstuvwxy"), False)
|