(self)
| 57 | self.closed() |
| 58 | |
| 59 | def checkFileDb(self): |
| 60 | if not os.path.exists(self.db): |
| 61 | errMsg = "the provided database file '%s' does not exist" % self.db |
| 62 | raise SqlmapFilePathException(errMsg) |
| 63 | |
| 64 | def connect(self): |
| 65 | errMsg = "'connect' method must be defined " |
no test coverage detected