Attempting to address shortcomings and whitespace issues

This commit is contained in:
Tyler Akins
2023-04-07 19:35:25 -05:00
parent 8e9fd680d4
commit febd3467c8
123 changed files with 2008 additions and 1137 deletions

View File

@@ -0,0 +1,2 @@
first line
second line

View File

@@ -0,0 +1 @@
{{multilineData}}

1
tests/fixtures/partial.partial vendored Normal file
View File

@@ -0,0 +1 @@
<strong>{{.}}</strong>

2
tests/fixtures/source-multiple-1.vars vendored Normal file
View File

@@ -0,0 +1,2 @@
export A=from1
export B=from1

2
tests/fixtures/source-multiple-2.vars vendored Normal file
View File

@@ -0,0 +1,2 @@
export B=from2
export C=from2

5
tests/fixtures/source.vars vendored Normal file
View File

@@ -0,0 +1,5 @@
export VAR=value
export ARR=(1 2 3)
declare -A ASSOC_ARR
# Can not export associative arrays, otherwise they turn into indexed arrays
ASSOC_ARR=([a]=AAA [b]=BBB)