()
| 13 | |
| 14 | |
| 15 | def test_escape_for_sql_statement_number(): |
| 16 | num = 2981 |
| 17 | escaped_bytes = escape_for_sql_statement(num) |
| 18 | assert escaped_bytes == "'2981'" |
| 19 | |
| 20 | |
| 21 | def test_escape_for_sql_statement_str(): |
nothing calls this directly
no test coverage detected