mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-13 22:38:04 +00:00
56c923228d
Added more tests to avoid bugs ;)
37 lines
788 B
Go
37 lines
788 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
var parseValueTests = []struct {
|
|
argument string
|
|
expectedResult interface{}
|
|
testDescription string
|
|
}{
|
|
{"true", true, "boolean"},
|
|
{"\"true\"", "true", "boolean as string"},
|
|
{"3.4", 3.4, "number"},
|
|
{"\"3.4\"", "3.4", "number as string"},
|
|
}
|
|
|
|
func TestParseValue(t *testing.T) {
|
|
for _, tt := range parseValueTests {
|
|
assertResultWithContext(t, tt.expectedResult, parseValue(tt.argument), tt.testDescription)
|
|
}
|
|
}
|
|
|
|
func TestRead(t *testing.T) {
|
|
result := read([]string{"sample.yaml", "b.c"})
|
|
assertResult(t, 2, result)
|
|
}
|
|
|
|
func TestUpdateYaml(t *testing.T) {
|
|
updateYaml([]string{"sample.yaml", "b.c", "3"})
|
|
}
|
|
|
|
func TestUpdateYaml_WithScript(t *testing.T) {
|
|
writeScript = "instruction_sample.yaml"
|
|
updateYaml([]string{"sample.yaml"})
|
|
}
|