File: sleep_test.py

package info (click to toggle)
pygame 2.6.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 43,076 kB
  • sloc: ansic: 66,932; python: 48,797; javascript: 1,153; objc: 224; sh: 121; makefile: 59; cpp: 25
file content (29 lines) | stat: -rw-r--r-- 715 bytes parent folder | download | duplicates (3)
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
if __name__ == "__main__":
    import sys
    import os

    pkg_dir = os.path.split(
        os.path.split(os.path.split(os.path.abspath(__file__))[0])[0]
    )[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

import time


class KeyModuleTest(unittest.TestCase):
    def test_get_focused(self):
        stop_time = time.time() + 10.0
        while time.time() < stop_time:
            time.sleep(1)
        self.assertTrue(True)


if __name__ == "__main__":
    unittest.main()