()
| 113 | |
| 114 | #[test] |
| 115 | fn bracket_string() { |
| 116 | let mut parser = Statement::new().unwrap(); |
| 117 | let result = parser.parse_and_execute("[[this is a string]", &Context::new()).unwrap(); |
| 118 | assert_eq!(result, "[this is a string]"); |
| 119 | } |
| 120 | |
| 121 | #[test] |
| 122 | fn bracket_in_string() { |
nothing calls this directly
no test coverage detected