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 | |
parent | 5e15341857e57671a3c617579e3d5dcc89040936 (diff) |
Explicitly list all the availables functions
Diffstat (limited to 'tests/configuration')
-rw-r--r-- | tests/configuration/simple.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/configuration/simple.toml b/tests/configuration/simple.toml index d41383a..9ca591a 100644 --- a/tests/configuration/simple.toml +++ b/tests/configuration/simple.toml @@ -8,13 +8,13 @@ tab = 1 [externals.target] extern_key = "\"_B\"" # Here, the values A & B are considered as column, and not litteral -intern_key = "function(:A, :B)" +intern_key = "concat(:A, :B)" allow_missing = true file = "" tab = 1 [sheet] columns = [ - "function(:target.A, :B, 'free\\' text')", + "if(:target.A, :B, 'free\\' text')", "counter([:target.A],[:target.A])" ] |