chockladhjul/venv/lib/python3.11/site-packages/pygame/tests/locals_test.py
2024-10-28 20:07:01 +01:00

17 lines
417 B
Python

import unittest
import pygame.constants
import pygame.locals
class LocalsTest(unittest.TestCase):
def test_locals_has_all_constants(self):
constants_set = set(pygame.constants.__all__)
locals_set = set(pygame.locals.__all__)
# locals should have everything that constants has
self.assertEqual(constants_set - locals_set, set())
if __name__ == "__main__":
unittest.main()