(self, connection)
| 1746 | |
| 1747 | @testing.fixture() |
| 1748 | def scalar(self, connection): |
| 1749 | def go(expression): |
| 1750 | return connection.scalar(select(expression)) |
| 1751 | |
| 1752 | return go |
| 1753 | |
| 1754 | def test_cast_name(self, scalar): |
| 1755 | eq_(scalar(cast("pg_class", postgresql.REGCLASS)), "pg_class") |
no outgoing calls
no test coverage detected