()
| 73 | # Test functions |
| 74 | #----------------------------------------------------------------------------- |
| 75 | def win32_without_pywin32(): |
| 76 | if sys.platform == 'win32': |
| 77 | try: |
| 78 | import pywin32 |
| 79 | except ImportError: |
| 80 | return True |
| 81 | return False |
| 82 | |
| 83 | |
| 84 | class ProfileStartupTest(TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected