()
| 19 | |
| 20 | |
| 21 | def test_escape_for_sql_statement_str(): |
| 22 | example_str = "example str" |
| 23 | escaped_bytes = escape_for_sql_statement(example_str) |
| 24 | assert escaped_bytes == "'example str'" |
| 25 | |
| 26 | |
| 27 | def test_output_sql_insert(): |
nothing calls this directly
no test coverage detected