(check, message)
| 335 | basename, DEFAULT_JS_TEST_EXTENSIONS) |
| 336 | status = {"success": True} |
| 337 | def _assert(check, message): # Like "assert", but doesn't throw. |
| 338 | if not check: |
| 339 | print("%s: Error: %s" % (path, message)) |
| 340 | status["success"] = False |
| 341 | try: |
| 342 | for section in contents: |
| 343 | _assert(type(section) == list, "Section must be a list") |
no test coverage detected