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