mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
13 lines
217 B
Bash
Executable File
13 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# acceptance test
|
|
X=$(./yq w ./examples/sample.yaml b.c 3 | ./yq r - b.c)
|
|
|
|
if [[ $X != 3 ]]; then
|
|
echo "Failed acceptance test: expected 3 but was $X"
|
|
exit 1
|
|
fi
|
|
echo "acceptance tests passed"
|