Setup testenvironment for the module: - Adds dummy home dir tree
()
| 54 | # |
| 55 | |
| 56 | def setup_module(): |
| 57 | """Setup testenvironment for the module: |
| 58 | |
| 59 | - Adds dummy home dir tree |
| 60 | """ |
| 61 | # Do not mask exceptions here. In particular, catching WindowsError is a |
| 62 | # problem because that exception is only defined on Windows... |
| 63 | os.makedirs(os.path.join(HOME_TEST_DIR, 'ipython')) |
| 64 | |
| 65 | |
| 66 | def teardown_module(): |
nothing calls this directly
no outgoing calls
no test coverage detected