func RunFilter(t *testing.T, input string, f kio.Filter) string
RunFilter runs filter and panic if there is error
func RunFilterE(t *testing.T, input string, f kio.Filter) (string, error)
RunFilterE runs filter and return error if there is
MutationTrackerStub to help stub a mutation tracker for kio.TrackableFilter
type MutationTrackerStub struct {
// contains filtered or unexported fields
}
func (mts *MutationTrackerStub) MutationTracker(key, value, tag string, node *yaml.RNode)
func (mts *MutationTrackerStub) Reset()
func (mts *MutationTrackerStub) SetValueArgs() []SetValueArg
type SetValueArg struct { Key string Value string Tag string NodePath []string }