1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
#################################### IMPORTS ###################################
if __name__ == '__main__':
import sys
import os
pkg_dir = os.path.split(os.path.abspath(__file__))[0]
parent_dir, pkg_name = os.path.split(pkg_dir)
is_pygame_pkg = (pkg_name == 'tests' and
os.path.split(parent_dir)[1] == 'pygame')
if not is_pygame_pkg:
sys.path.insert(0, parent_dir)
else:
is_pygame_pkg = __name__.startswith('pygame.tests.')
import unittest
################################################################################
class SysfontModuleTest(unittest.TestCase):
def todo_test_create_aliases(self):
# __doc__ (as of 2008-08-02) for pygame.sysfont.create_aliases:
#
self.fail()
def todo_test_initsysfonts(self):
# __doc__ (as of 2008-08-02) for pygame.sysfont.initsysfonts:
#
self.fail()
def todo_test_initsysfonts_darwin(self):
# __doc__ (as of 2008-08-02) for pygame.sysfont.initsysfonts_darwin:
#
self.fail()
def todo_test_initsysfonts_unix(self):
# __doc__ (as of 2008-08-02) for pygame.sysfont.initsysfonts_unix:
#
self.fail()
def todo_test_initsysfonts_win32(self):
# __doc__ (as of 2008-08-02) for pygame.sysfont.initsysfonts_win32:
#
self.fail()
################################################################################
if __name__ == '__main__':
unittest.main()
|