Files
jagacloud/pkg/state/store_test.go
2025-11-23 13:37:10 +07:00

11 lines
173 B
Go

package state
import "testing"
func TestTrimExt(t *testing.T) {
got := trimExt("foo.yaml")
if got != "foo" {
t.Fatalf("expected foo, got %s", got)
}
}