Files
avo/printer/printer_test.go

32 lines
545 B
Go
Raw Permalink Normal View History

package printer_test
import (
"fmt"
2026-03-06 20:14:02 +00:00
"sources.truenas.cloud/code/avo/printer"
)
func ExampleConfig_GeneratedBy() {
// Default configuration named "avo".
cfg := printer.NewDefaultConfig()
fmt.Println(cfg.GeneratedBy())
// Name can be customized.
cfg = printer.Config{
Name: "mildred",
}
fmt.Println(cfg.GeneratedBy())
// Argv takes precedence.
cfg = printer.Config{
Argv: []string{"echo", "hello", "world"},
Name: "mildred",
}
fmt.Println(cfg.GeneratedBy())
// Output:
// avo
// mildred
// command: echo hello world
}