diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-01-07 22:40:19 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-01-22 12:22:26 +0100 |
commit | 986bcb796d8b9e1f485baa8da599aa816c56b587 (patch) | |
tree | 76a83796a60ec0e30575d3078518c6e2545cd4b0 /tests/configuration_expression.ml | |
parent | 5e15341857e57671a3c617579e3d5dcc89040936 (diff) |
Explicitly list all the availables functions
Diffstat (limited to 'tests/configuration_expression.ml')
-rw-r--r-- | tests/configuration_expression.ml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/configuration_expression.ml b/tests/configuration_expression.ml index a5c4755..fc4c0ec 100644 --- a/tests/configuration_expression.ml +++ b/tests/configuration_expression.ml @@ -224,6 +224,23 @@ let priority_operator_or = (Or, BOperator (Different, Integer "1", Integer "1"), Integer "0"))) result +let unknown_function = + "unknown function" >:: fun _ -> + let expr = "function()" in + let result = ImportConf.expression_from_string expr in + + assert_equal ~printer + (Error "Unknown function or wrong number of arguments for 'function'") + result + +let wrong_arguments = + "unknown function" >:: fun _ -> + let expr = "if()" in + let result = ImportConf.expression_from_string expr in + + assert_equal ~printer + (Error "Unknown function or wrong number of arguments for 'if'") result + let test_suit = [ parse_dquoted; @@ -248,6 +265,8 @@ let test_suit = priority_equality; priority_operator_and; priority_operator_or; + unknown_function; + wrong_arguments; ] let tests = "configuration_expression" >::: test_suit |