(conn)
| 642 | |
| 643 | |
| 644 | def test_as_string_context(conn): |
| 645 | conn.adapters.register_dumper(str, make_dumper("1")) |
| 646 | query = sql.as_string(sql.SQL("select {}").format("foo"), context=conn) |
| 647 | assert query == no_e("select 'foo1'") |
| 648 | |
| 649 | |
| 650 | def test_as_string_literal(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…