()
| 106 | |
| 107 | #[test] |
| 108 | fn string_literal() { |
| 109 | let mut parser = Statement::new().unwrap(); |
| 110 | let result = parser.parse_and_execute("this is a string", &Context::new()).unwrap(); |
| 111 | assert_eq!(result, "this is a string"); |
| 112 | } |
| 113 | |
| 114 | #[test] |
| 115 | fn bracket_string() { |
nothing calls this directly
no test coverage detected