(t *testing.T)
| 14 | ) |
| 15 | |
| 16 | func TestNamespaceScope(t *testing.T) { |
| 17 | scoped := Namespace{name: "foo"}.Scope("bar") |
| 18 | assert.Check(t, is.Equal("foo_bar", scoped)) |
| 19 | } |
| 20 | |
| 21 | func TestNamespaceDescope(t *testing.T) { |
| 22 | descoped := Namespace{name: "foo"}.Descope("foo_bar") |
nothing calls this directly
no test coverage detected
searching dependent graphs…