tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
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
# Test the frozen module defined in frozen.c.
 
from test.test_support import captured_stdout, run_unittest
import unittest
import sys
 
class FrozenTests(unittest.TestCase):
    def test_frozen(self):
 
        with captured_stdout() as stdout:
            try:
                import __hello__
            except ImportError, x:
                self.fail("import __hello__ failed:" + str(x))
 
            try:
                import __phello__
            except ImportError, x:
                self.fail("import __phello__ failed:" + str(x))
 
            try:
                import __phello__.spam
            except ImportError, x:
                self.fail("import __phello__.spam failed:" + str(x))
 
            try:
                import __phello__.foo
            except ImportError:
                pass
            else:
                self.fail("import __phello__.foo should have failed")
 
        self.assertEqual(stdout.getvalue(),
                         'Hello world...\nHello world...\nHello world...\n')
 
        del sys.modules['__hello__']
        del sys.modules['__phello__']
        del sys.modules['__phello__.spam']
 
 
def test_main():
    run_unittest(FrozenTests)
 
 
 
if __name__ == '__main__':
    test_main()