(self)
| 51 | def test_create_collation_bad_upper(self): |
| 52 | class BadUpperStr(str): |
| 53 | def upper(self): |
| 54 | return None |
| 55 | mycoll = lambda x, y: -((x > y) - (x < y)) |
| 56 | self.con.create_collation(BadUpperStr("mycoll"), mycoll) |
| 57 | result = self.con.execute(""" |
no outgoing calls
no test coverage detected