(self, a, b)
| 465 | raise Exception("file %s is empty" % (path, )) |
| 466 | |
| 467 | def check_equal(self, a, b): |
| 468 | if a != b: |
| 469 | self.verify_match(a, b, match_prepare=pprint.pformat) |
| 470 | |
| 471 | def check_ge(self, a, b): |
| 472 | if not a >= b: |
no test coverage detected