Intelegentny_Pszczelarz/.venv/Lib/site-packages/pygame/tests/ftfont_test.py

18 lines
421 B
Python
Raw Normal View History

2023-03-18 12:55:22 +01:00
import sys
import os
import unittest
from pygame.tests import font_test
import pygame.ftfont
font_test.pygame_font = pygame.ftfont
for name in dir(font_test):
obj = getattr(font_test, name)
if isinstance(obj, type) and issubclass(obj, unittest.TestCase): # conditional and
new_name = f"Ft{name}"
globals()[new_name] = type(new_name, (obj,), {})
if __name__ == "__main__":
unittest.main()