Skip to content
Snippets Groups Projects
Commit 8f9f8f80 authored by Oliver Heidmann's avatar Oliver Heidmann Committed by Uwe Schulzweida
Browse files

added test for preceeding operators of groups

parent 7a4295f7
No related branches found
No related tags found
2 merge requests!137fixed operator-nodes not being removed properly from the stack,!136fixed operator-nodes not being removed properly from the stack
......@@ -268,6 +268,19 @@ go_bandit([]() {
"-inVariable_out1", "file3", "out" },
"out [ in2_out1 [ inVariable_out1 [ file1 file2 ] inVariable_out1 "
"[ file3 ] ] ]");
check("handles preceeding operator of finished variable input correctly "
"variable input at the end",
{ "-in2_out1", "-inVariable_out1", "[", "file1", "file2", "]",
"-inVariable_out1", "file3", "out" },
"out [ in2_out1 [ inVariable_out1 [ file1 file2 ] inVariable_out1 "
"[ file3 ] ] ]");
check("handles preceeding operator of finished variable input correctly "
"variable input at the end",
{ "-in2_out1", "-in1_out1", "-inVariable_out1", "[", "file1", "file2", "]",
"-inVariable_out1", "file3", "out" },
"out [ in2_out1 in1_out1 [ inVariable_out1 [ file1 file2 ] inVariable_out1 "
"[ file3 ] ] ]");
});
bandit::describe("Apply feature", [&]() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment