yq/scripts/acceptance.sh
Azimjon Ilkhomov bc4bab9380 Fix typo
2019-08-05 11:30:20 +10:00

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"