agent/pkg/agentic/plan_example_test.go

14 lines
233 B
Go
Raw Normal View History

// SPDX-License-Identifier: EUPL-1.2
package agentic
import (
core "dappco.re/go/core"
)
func Example_planPath() {
path := planPath("/tmp/plans", "my-plan")
core.Println(core.HasSuffix(path, "my-plan.json"))
// Output: true
}