()
| 7 | |
| 8 | |
| 9 | def test_escape_for_sql_statement_bytes(): |
| 10 | bts = b"837124ab3e8dc0f" |
| 11 | escaped_bytes = escape_for_sql_statement(bts) |
| 12 | assert escaped_bytes == "X'383337313234616233653864633066'" |
| 13 | |
| 14 | |
| 15 | def test_escape_for_sql_statement_number(): |
nothing calls this directly
no test coverage detected