agent/pkg/agentic/prep_example_test.go

24 lines
423 B
Go
Raw Permalink Normal View History

// SPDX-License-Identifier: EUPL-1.2
package agentic
import core "dappco.re/go/core"
func ExampleAgentOptions() {
opts := AgentOptions{}
core.Println(opts == AgentOptions{})
// Output: true
}
func ExamplePrepInput() {
input := PrepInput{Repo: "go-io", Issue: 42}
core.Println(input.Repo, input.Issue)
// Output: go-io 42
}
func ExampleNewPrep() {
prep := NewPrep()
core.Println(prep != nil)
// Output: true
}