Setup test environment for the module: - Adds dummy home dir tree
()
| 49 | # |
| 50 | |
| 51 | def setup_module(): |
| 52 | """Setup test environment for the module: |
| 53 | |
| 54 | - Adds dummy home dir tree |
| 55 | """ |
| 56 | # Do not mask exceptions here. In particular, catching WindowsError is a |
| 57 | # problem because that exception is only defined on Windows... |
| 58 | os.makedirs(IP_TEST_DIR) |
| 59 | |
| 60 | |
| 61 | def teardown_module(): |
nothing calls this directly
no outgoing calls
no test coverage detected