()
| 63 | |
| 64 | #[test] |
| 65 | fn condition_false() { |
| 66 | let mut parser = Statement::new().unwrap(); |
| 67 | let result = parser.parse_and_execute("[if(false, 'left', 'right')]", &Context::new()).unwrap(); |
| 68 | assert_eq!(result, "right"); |
| 69 | } |
| 70 | } |
nothing calls this directly
no test coverage detected