Sha256: 4408acc0f8a942ba25043326c1fe74634a87c817eac57a465de43aca8ce1fc59

Contents?: true

Size: 1.74 KB

Versions: 54

Compression:

Stored size: 1.74 KB

Contents

import unittest

from pangram import is_pangram


# Tests adapted from `problem-specifications//canonical-data.json` @ v1.4.0

class PangramTests(unittest.TestCase):

    def test_sentence_empty(self):
        self.assertIs(is_pangram(''), False)

    def test_recognizes_a_perfect_lower_case_pangram(self):
        self.assertIs(is_pangram('abcdefghijklmnopqrstuvwxyz'), True)

    def test_pangram_with_only_lower_case(self):
        self.assertIs(
            is_pangram('the quick brown fox jumps over the lazy dog'),
            True)

    def test_missing_character_x(self):
        self.assertIs(
            is_pangram('a quick movement of the enemy will '
                       'jeopardize five gunboats'),
            False)

    def test_another_missing_character(self):
        self.assertIs(is_pangram('five boxing wizards jump quickly at it'),
                      False)

    def test_pangram_with_underscores(self):
        self.assertIs(
            is_pangram('the_quick_brown_fox_jumps_over_the_lazy_dog'),
            True)

    def test_pangram_with_numbers(self):
        self.assertIs(
            is_pangram('the 1 quick brown fox jumps over the 2 lazy dogs'),
            True)

    def test_missing_letters_replaced_by_numbers(self):
        self.assertIs(
            is_pangram('7h3 qu1ck brown fox jumps ov3r 7h3 lazy dog'),
            False)

    def test_pangram_with_mixedcase_and_punctuation(self):
        self.assertIs(
            is_pangram('"Five quacking Zephyrs jolt my wax bed."'),
            True)

    def test_upper_and_lower_case_versions_of_the_same_character(self):
        self.assertIs(
            is_pangram('the quick brown fox jumped over the lazy FX'),
            False)


if __name__ == '__main__':
    unittest.main()

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
trackler-2.2.1.120 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.119 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.118 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.117 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.116 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.115 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.114 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.113 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.111 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.110 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.109 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.108 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.107 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.106 tracks/python/exercises/pangram/pangram_test.py