From acadcd05b057f513d46e3996d73fbc86d391a030 Mon Sep 17 00:00:00 2001 From: Jonatan Schlag Date: Sun, 29 Apr 2018 11:05:02 +0200 Subject: [PATCH] Add new test and improve our example test to show our new possibilities Signed-off-by: Jonatan Schlag --- test/recipe | 6 +++++- test2/recipe | 2 ++ test2/settings | 9 +++++++++ test3/recipe | 2 ++ test3/settings | 9 +++++++++ 5 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 test2/recipe create mode 100644 test2/settings create mode 100644 test3/recipe create mode 100644 test3/settings diff --git a/test/recipe b/test/recipe index 309b5a2..c035b97 100644 --- a/test/recipe +++ b/test/recipe @@ -1,2 +1,6 @@ alice: echo "Hello World" -bob: echo "Hello World" \ No newline at end of file +bob: echo "Hello World" +alice: ls -l +all: blkid +alice,bob !: eecho "This is a comma seperated list" +include: ../test2 diff --git a/test2/recipe b/test2/recipe new file mode 100644 index 0000000..7f96a65 --- /dev/null +++ b/test2/recipe @@ -0,0 +1,2 @@ +alice: echo "This is test2 on alice" +include: ../test3 diff --git a/test2/settings b/test2/settings new file mode 100644 index 0000000..616e1a0 --- /dev/null +++ b/test2/settings @@ -0,0 +1,9 @@ +[DEFAULT] +Name = Hello World +Description = This is a + short description. + +[VIRTUAL_ENVIRONMENT] +Name = basic +path = ../virtual-environment/basic + diff --git a/test3/recipe b/test3/recipe new file mode 100644 index 0000000..5382623 --- /dev/null +++ b/test3/recipe @@ -0,0 +1,2 @@ +alice: echo "This is test3 on alice" +all: echo "This is test3 on all" \ No newline at end of file diff --git a/test3/settings b/test3/settings new file mode 100644 index 0000000..616e1a0 --- /dev/null +++ b/test3/settings @@ -0,0 +1,9 @@ +[DEFAULT] +Name = Hello World +Description = This is a + short description. + +[VIRTUAL_ENVIRONMENT] +Name = basic +path = ../virtual-environment/basic + -- 2.39.2