Skip to content

Instantly share code, notes, and snippets.

@antonionikolov
antonionikolov / is_pangram.py
Last active August 29, 2015 13:57
is_pangram test
import unittest
import solution
class TestFiveFunctions(unittest.TestCase):
def test_is_pangram(self):
self.assertFalse(
solution.is_pangram('Малката пухкава панда яде бамбук.'))