summaryrefslogtreecommitdiff
path: root/support/arara/source/src/test/resources/executiontests/conditionals
diff options
context:
space:
mode:
Diffstat (limited to 'support/arara/source/src/test/resources/executiontests/conditionals')
-rw-r--r--support/arara/source/src/test/resources/executiontests/conditionals/arararc.yaml3
-rw-r--r--support/arara/source/src/test/resources/executiontests/conditionals/conditionals.tex6
-rw-r--r--support/arara/source/src/test/resources/executiontests/conditionals/echofour.yaml10
-rw-r--r--support/arara/source/src/test/resources/executiontests/conditionals/echoone.yaml10
-rw-r--r--support/arara/source/src/test/resources/executiontests/conditionals/echothree.yaml10
-rw-r--r--support/arara/source/src/test/resources/executiontests/conditionals/echotwo.yaml10
6 files changed, 0 insertions, 49 deletions
diff --git a/support/arara/source/src/test/resources/executiontests/conditionals/arararc.yaml b/support/arara/source/src/test/resources/executiontests/conditionals/arararc.yaml
deleted file mode 100644
index 54afa4c5fc..0000000000
--- a/support/arara/source/src/test/resources/executiontests/conditionals/arararc.yaml
+++ /dev/null
@@ -1,3 +0,0 @@
-!config
-paths:
- - './' \ No newline at end of file
diff --git a/support/arara/source/src/test/resources/executiontests/conditionals/conditionals.tex b/support/arara/source/src/test/resources/executiontests/conditionals/conditionals.tex
deleted file mode 100644
index 35a3208e12..0000000000
--- a/support/arara/source/src/test/resources/executiontests/conditionals/conditionals.tex
+++ /dev/null
@@ -1,6 +0,0 @@
-% arara: echoone
-% arara: echotwo if exists('quack')
-% arara: echothree if (exists('quack') && found('quack', 'Duck'))
-% arara: echofour
-Quack
-\bye
diff --git a/support/arara/source/src/test/resources/executiontests/conditionals/echofour.yaml b/support/arara/source/src/test/resources/executiontests/conditionals/echofour.yaml
deleted file mode 100644
index 17db18947c..0000000000
--- a/support/arara/source/src/test/resources/executiontests/conditionals/echofour.yaml
+++ /dev/null
@@ -1,10 +0,0 @@
-!config
-identifier: echofour
-name: Test rule for conditionals 4
-commands:
- - name: The echoer
- command: >
- @{
- return getCommand('echo', 'QuackFour');
- }
-arguments: []
diff --git a/support/arara/source/src/test/resources/executiontests/conditionals/echoone.yaml b/support/arara/source/src/test/resources/executiontests/conditionals/echoone.yaml
deleted file mode 100644
index 7c304b991f..0000000000
--- a/support/arara/source/src/test/resources/executiontests/conditionals/echoone.yaml
+++ /dev/null
@@ -1,10 +0,0 @@
-!config
-identifier: echoone
-name: Test rule for conditionals 1
-commands:
- - name: The echoer
- command: >
- @{
- return getCommand('echo', 'QuackOne');
- }
-arguments: []
diff --git a/support/arara/source/src/test/resources/executiontests/conditionals/echothree.yaml b/support/arara/source/src/test/resources/executiontests/conditionals/echothree.yaml
deleted file mode 100644
index 4f71872321..0000000000
--- a/support/arara/source/src/test/resources/executiontests/conditionals/echothree.yaml
+++ /dev/null
@@ -1,10 +0,0 @@
-!config
-identifier: echothree
-name: Test rule for conditionals 3
-commands:
- - name: The echoer
- command: >
- @{
- return getCommand('echo', 'QuackThree');
- }
-arguments: []
diff --git a/support/arara/source/src/test/resources/executiontests/conditionals/echotwo.yaml b/support/arara/source/src/test/resources/executiontests/conditionals/echotwo.yaml
deleted file mode 100644
index 61915393b5..0000000000
--- a/support/arara/source/src/test/resources/executiontests/conditionals/echotwo.yaml
+++ /dev/null
@@ -1,10 +0,0 @@
-!config
-identifier: echotwo
-name: Test rule for conditionals 2
-commands:
- - name: The echoer
- command: >
- @{
- return getCommand('echo', 'QuackTwo');
- }
-arguments: []