(self)
| 81 | self.db.ctx.db.close() |
| 82 | |
| 83 | def _testable(self): |
| 84 | try: |
| 85 | setup_database(self.dbname, driver=self.driver) |
| 86 | print("Running tests for %s" % self.__class__.__name__, file=web.debug) |
| 87 | return True |
| 88 | except ImportError as e: |
| 89 | print(str(e), "(ignoring %s)" % self.__class__.__name__, file=web.debug) |
| 90 | return False |
| 91 | |
| 92 | def testUnicode(self): |
| 93 | # Bug#177265: unicode queries throw errors |
nothing calls this directly
no test coverage detected