Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Test ¶
type Test struct {
// Pos is the YAML file location where this object started.
Pos model.ConfigPos `yaml:"-"`
Inputs []*VarValue `yaml:"inputs"`
}
Test represents a parsed test.yaml describing test configs.
func (*Test) UnmarshalYAML ¶
UnmarshalYAML implements yaml.Unmarshaler.
type VarValue ¶ added in v0.5.0
type VarValue struct {
// Pos is the YAML file location where this object started.
Pos model.ConfigPos `yaml:"-"`
Name model.String `yaml:"name"`
Value model.String `yaml:"value"`
}
VarValue represents one of the parsed "input" fields from the inputs.yaml file.
func (*VarValue) UnmarshalYAML ¶ added in v0.5.0
UnmarshalYAML implements yaml.Unmarshaler.
Click to show internal directories.
Click to hide internal directories.