aboutsummaryrefslogtreecommitdiff
path: root/tests/configuration/simple.toml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/configuration/simple.toml')
-rw-r--r--tests/configuration/simple.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/configuration/simple.toml b/tests/configuration/simple.toml
new file mode 100644
index 0000000..d41383a
--- /dev/null
+++ b/tests/configuration/simple.toml
@@ -0,0 +1,20 @@
+version = 1
+
+[source]
+name = "source_name"
+file = "source_file"
+tab = 1
+
+[externals.target]
+extern_key = "\"_B\""
+# Here, the values A & B are considered as column, and not litteral
+intern_key = "function(:A, :B)"
+allow_missing = true
+file = ""
+tab = 1
+
+[sheet]
+columns = [
+ "function(:target.A, :B, 'free\\' text')",
+ "counter([:target.A],[:target.A])"
+]