~vcs-imports/python-mysqldb/old-svn-trunk

« back to all changes in this revision

Viewing changes to tests/test_MySQLdb_capabilities.py

  • Committer: adustman
  • Date: 2010-02-20 04:27:21 UTC
  • Revision ID: vcs-imports@canonical.com-20100220042721-67b7v0m4p50nogaa
This passes all test, yet is still broken and ugly in many ways.
However, a lot of ugliness has been removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
    connect_kwargs = dict(db='test', read_default_file='~/.my.cnf',
14
14
                          charset='utf8', sql_mode="ANSI,STRICT_TRANS_TABLES,TRADITIONAL")
15
15
    create_table_extra = "ENGINE=INNODB CHARACTER SET UTF8"
16
 
    leak_test = True
 
16
    leak_test = False
17
17
    
18
18
    def quote_identifier(self, ident):
19
19
        return "`%s`" % ident