mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
21 lines
338 B
Bash
21 lines
338 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
setUp() {
|
||
|
rm test*.yml || true
|
||
|
cat >test.yml <<EOL
|
||
|
# comment
|
||
|
EOL
|
||
|
}
|
||
|
|
||
|
testStringInterpolation() {
|
||
|
X=$(./yq -n '"Mike \(3 + 4)"')
|
||
|
assertEquals "Mike 7" "$X"
|
||
|
}
|
||
|
|
||
|
testNoStringInterpolation() {
|
||
|
X=$(./yq --string-interpolation=f -n '"Mike \(3 + 4)"')
|
||
|
assertEquals "Mike \(3 + 4)" "$X"
|
||
|
}
|
||
|
|
||
|
|
||
|
source ./scripts/shunit2
|