mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
27 lines
316 B
Bash
Executable File
27 lines
316 B
Bash
Executable File
#!/bin/bash
|
|
|
|
setUp() {
|
|
rm test*.yq || true
|
|
cat >test.yq <<EOL
|
|
#!./yq
|
|
.a.b
|
|
EOL
|
|
chmod +x test.yq
|
|
|
|
rm test*.yml || true
|
|
cat >test.yml <<EOL
|
|
a: {b: apple}
|
|
EOL
|
|
}
|
|
|
|
testCanExecYqFile() {
|
|
read -r -d '' expected << EOM
|
|
apple
|
|
EOM
|
|
X=$(./test.yq test.yml)
|
|
assertEquals "$expected" "$X"
|
|
}
|
|
|
|
source ./scripts/shunit2
|
|
|