(*args)
| 84 | connection.shutdown() |
| 85 | |
| 86 | def getTempPath(*args): |
| 87 | testRoot = os.path.join(os.path.abspath(__file__), '..') |
| 88 | tempPath = os.path.join(testRoot, 'temp') |
| 89 | for arg in args: |
| 90 | tempPath = os.path.join(tempPath, arg) |
| 91 | return os.path.abspath(tempPath) |
| 92 | |
| 93 | def create_test_db(): |
| 94 | """ |
no outgoing calls
no test coverage detected