(t *testing.T)
| 844 | } |
| 845 | |
| 846 | func TestRecursiveAliases(t *testing.T) { |
| 847 | v := New() |
| 848 | v.Set("baz", "bat") |
| 849 | v.RegisterAlias("Baz", "Roo") |
| 850 | v.RegisterAlias("Roo", "baz") |
| 851 | assert.Equal(t, "bat", v.Get("Baz")) |
| 852 | } |
| 853 | |
| 854 | func TestUnmarshal(t *testing.T) { |
| 855 | v := New() |
nothing calls this directly
no test coverage detected