(self, conn)
| 397 | ) |
| 398 | |
| 399 | def test_text_literal(self, conn): |
| 400 | conn.adapters.register_dumper(str, StrDumper) |
| 401 | assert sql.Literal("foo").as_string(conn) == "'foo'" |
| 402 | |
| 403 | @pytest.mark.crdb_skip("composite") # create type, actually |
| 404 | @pytest.mark.parametrize("name", ["a-b", f"{eur}", "order", "foo bar", "FooBar"]) |
nothing calls this directly
no test coverage detected