(test, msg="Exception")
| 94 | |
| 95 | # asserts must always raise exceptions for proper functioning |
| 96 | def _assert(test, msg="Exception"): |
| 97 | if not test: |
| 98 | raise Exception(msg) |
| 99 | |
| 100 | |
| 101 | class SystemSymbols(object): |
no outgoing calls
no test coverage detected