(self)
| 30 | self.assertEqual(mogrified, expected) |
| 31 | |
| 32 | async def test_mogrify_multiple(self): |
| 33 | mogrified = await utils._mogrify( |
| 34 | self.con, 'SELECT $1::int, $2::int[]', |
| 35 | [1, [2, 3, 4, 5]]) |
| 36 | expected = "SELECT '1'::int, '{2,3,4,5}'::int[]" |
| 37 | self.assertEqual(mogrified, expected) |
nothing calls this directly
no outgoing calls
no test coverage detected