From 8d568a816d4999b07eebf9ccbecc66e258abfd40 Mon Sep 17 00:00:00 2001 From: Alexander Schlemmer <alexander@mail-schlemmer.de> Date: Tue, 25 Jul 2023 13:32:40 +0200 Subject: [PATCH] TST: additional cfood for scanner test --- unittests/cfood_variable_deletion2.yml | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 unittests/cfood_variable_deletion2.yml diff --git a/unittests/cfood_variable_deletion2.yml b/unittests/cfood_variable_deletion2.yml new file mode 100644 index 00000000..729fe519 --- /dev/null +++ b/unittests/cfood_variable_deletion2.yml @@ -0,0 +1,29 @@ + +Data: + type: Directory + match: (?P<test_1>.*) + subtree: + Data_1: + type: Directory + match: ^Data_1$ + subtree: + Subdir: + type: Directory + match: ^(?P<test_1>.*)$ + records: + DummyRecord: + name: "Record from Data_1" + var1: $test_1 + var2: $test_2 + Data_2: + type: Directory + match: ^Data_2$ + subtree: + Subdir: + type: Directory + match: ^(?P<test_2>.*)$ + records: + DummyRecord: + name: "Record from Data_2" + var1: $test_1 + var2: $test_2 -- GitLab