This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author r.david.murray
Recipients Alex.LordThorsen, ghaering, jim_minter, r.david.murray
Date 2015-05-18.01:00:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1431910834.57.0.551389153197.issue16864@psf.upfronthosting.co.za>
In-reply-to
Content
All lines need to be wrapped to <80 columns.

The idea behind the loop is this:

    sql = "{} INTO test(id, unique_test) VALUES (?, ?)"
    self.cu.execute(sql.format('INSERT OR REPLACE, (1, "foo")
    for statement in ["INSERT OR REPLACE", "REPLACE"]:
        with self.subTest(statement=statement):
            self.cu.execute(sql.format(statement), (1, "foo"))
            self.assertEqual(self.cu.lastrowid, 1) 

What this does is run *both* tests, even if one fails, and reports the results separately (labeled with 'statement='INSERT OR REPLACE', ect).
History
Date User Action Args
2015-05-18 01:00:34r.david.murraysetrecipients: + r.david.murray, ghaering, jim_minter, Alex.LordThorsen
2015-05-18 01:00:34r.david.murraysetmessageid: <1431910834.57.0.551389153197.issue16864@psf.upfronthosting.co.za>
2015-05-18 01:00:34r.david.murraylinkissue16864 messages
2015-05-18 01:00:33r.david.murraycreate