Skip to content

Commit

Permalink
test: add black box test for new file inclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
jkloetzke committed Dec 16, 2023
1 parent e991e79 commit dddcd32
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/black-box/include/output/many-1.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo
1 change: 1 addition & 0 deletions test/black-box/include/output/many-2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bar
1 change: 1 addition & 0 deletions test/black-box/include/output/many-3.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
baz
1 change: 1 addition & 0 deletions test/black-box/include/recipes/many/01-foo.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo
1 change: 1 addition & 0 deletions test/black-box/include/recipes/many/02-bar.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bar
1 change: 1 addition & 0 deletions test/black-box/include/recipes/many/03-baz.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
baz
5 changes: 5 additions & 0 deletions test/black-box/include/recipes/root.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,8 @@ packageScript: |
echo $<'inline.txt'> > result.txt
cat $<<file.txt>> >> result.txt
i=1
for f in $<@many/*.txt@> ; do
cp "$f" "many-$i.txt"
: $((i++))
done

0 comments on commit dddcd32

Please sign in to comment.