mirror of
https://github.com/mikefarah/yq.git
synced 2025-01-13 03:45:37 +00:00
Added more tests
This commit is contained in:
parent
66b248ac18
commit
b2380399a8
@ -36,6 +36,33 @@ testLeadingSeperatorPipeIntoEvalSeq() {
|
|||||||
assertEquals "$expected" "$X"
|
assertEquals "$expected" "$X"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
testLeadingSeperatorExtractField() {
|
||||||
|
X=$(./yq e '.a' - < test.yml)
|
||||||
|
assertEquals "test" "$X"
|
||||||
|
}
|
||||||
|
|
||||||
|
testLeadingSeperatorExtractFieldWithCommentsAfterSep() {
|
||||||
|
cat >test.yml <<EOL
|
||||||
|
---
|
||||||
|
# hi peeps
|
||||||
|
# cool
|
||||||
|
a: test
|
||||||
|
EOL
|
||||||
|
X=$(./yq e '.a' test.yml)
|
||||||
|
assertEquals "test" "$X"
|
||||||
|
}
|
||||||
|
|
||||||
|
testLeadingSeperatorExtractFieldWithCommentsBeforeSep() {
|
||||||
|
cat >test.yml <<EOL
|
||||||
|
# hi peeps
|
||||||
|
# cool
|
||||||
|
---
|
||||||
|
a: test
|
||||||
|
EOL
|
||||||
|
X=$(./yq e '.a' test.yml)
|
||||||
|
assertEquals "test" "$X"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
testLeadingSeperatorEvalSeq() {
|
testLeadingSeperatorEvalSeq() {
|
||||||
X=$(./yq e test.yml)
|
X=$(./yq e test.yml)
|
||||||
|
Loading…
Reference in New Issue
Block a user