()
| 144 | |
| 145 | #[test] |
| 146 | fn bind_insert_values() { |
| 147 | let result = bind_and_format( |
| 148 | "INSERT INTO users (id, name) VALUES ($1, $2)", |
| 149 | &[ParamValue::Int64(1), ParamValue::Text("eve".into())], |
| 150 | ); |
| 151 | assert!(result.contains("1, 'eve'"), "got: {result}"); |
| 152 | } |
| 153 | |
| 154 | #[test] |
| 155 | fn bind_bool_param() { |
nothing calls this directly
no test coverage detected