()
| 120 | |
| 121 | #[test] |
| 122 | fn bracket_in_string() { |
| 123 | let mut parser = Statement::new().unwrap(); |
| 124 | let result = parser.parse_and_execute("[this] is a string", &Context::new()); |
| 125 | assert!(result.is_err()); |
| 126 | } |
| 127 | |
| 128 | #[test] |
| 129 | fn invalid_function() { |
nothing calls this directly
no test coverage detected