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.160 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.159 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.158 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.157 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.156 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.155 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.154 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.153 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.152 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.151 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.150 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.149 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.148 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.147 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.146 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.145 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.144 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.143 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.142 tracks/python/exercises/pangram/pangram_test.py
trackler-2.2.1.141 tracks/python/exercises/pangram/pangram_test.py