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