()
| 2986 | |
| 2987 | #[test] |
| 2988 | fn test_expr_literals() { |
| 2989 | do_expr_ok_test("TRUE", expr_boolean(true, 1, 7)); |
| 2990 | do_expr_ok_test("FALSE", expr_boolean(false, 1, 7)); |
| 2991 | do_expr_ok_test("5", expr_integer(5, 1, 7)); |
| 2992 | do_expr_ok_test("\"some text\"", expr_text("some text", 1, 7)); |
| 2993 | } |
| 2994 | |
| 2995 | #[test] |
| 2996 | fn test_expr_symbols() { |
nothing calls this directly
no test coverage detected