()
| 46 | |
| 47 | |
| 48 | def has_pywin32(): |
| 49 | try: |
| 50 | import win32api |
| 51 | except ImportError: |
| 52 | return False |
| 53 | return True |
| 54 | |
| 55 | |
| 56 | @dec.onlyif(has_pywin32, "This test requires win32api to run") |
nothing calls this directly
no outgoing calls
no test coverage detected