MCPcopy Index your code
hub / github.com/helm/helm / TestChartFullPath

Function TestChartFullPath

pkg/chart/v2/chart_test.go:152–171  ·  view source on GitHub ↗
(t *testing.T)

Source from the content-addressed store, hash-verified

150}
151
152func TestChartFullPath(t *testing.T) {
153 chrt1 := Chart{
154 parent: &Chart{
155 Metadata: &Metadata{
156 Name: "foo",
157 },
158 },
159 }
160
161 chrt2 := Chart{
162 Metadata: &Metadata{
163 Name: "foo",
164 },
165 }
166
167 is := assert.New(t)
168
169 is.Equal("foo/charts/", chrt1.ChartFullPath())
170 is.Equal("foo", chrt2.ChartFullPath())
171}
172
173func TestCRDObjects(t *testing.T) {
174 modTime := time.Now()

Callers

nothing calls this directly

Calls 1

ChartFullPathMethod · 0.95

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…