Final exam version

This commit is contained in:
2026-06-26 10:40:09 +03:00
commit 3e593aea3e
5224 changed files with 535773 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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()