(t *testing.T)
| 29 | } |
| 30 | |
| 31 | func TestAddStackLabel(t *testing.T) { |
| 32 | labels := map[string]string{ |
| 33 | "something": "labeled", |
| 34 | } |
| 35 | actual := addStackLabel(Namespace{name: "foo"}, labels) |
| 36 | expected := map[string]string{ |
| 37 | "something": "labeled", |
| 38 | LabelNamespace: "foo", |
| 39 | } |
| 40 | assert.Check(t, is.DeepEqual(expected, actual)) |
| 41 | } |
| 42 | |
| 43 | func TestNetworks(t *testing.T) { |
| 44 | namespace := Namespace{name: "foo"} |
nothing calls this directly
no test coverage detected
searching dependent graphs…