()
| 153 | |
| 154 | #[test] |
| 155 | fn parse_sql_detected() { |
| 156 | let block = parse_block("BEGIN INSERT INTO users VALUES (1); END").unwrap(); |
| 157 | assert!(matches!(&block.statements[0], Statement::Sql { .. })); |
| 158 | } |
| 159 | |
| 160 | #[test] |
| 161 | fn parse_raise() { |
nothing calls this directly
no test coverage detected