diff --git a/rest/httpx/requests_test.go b/rest/httpx/requests_test.go index be930b17..68bc9f40 100644 --- a/rest/httpx/requests_test.go +++ b/rest/httpx/requests_test.go @@ -27,6 +27,13 @@ func TestParseForm(t *testing.T) { assert.Equal(t, 3.4, v.Percent) } +func TestParseHeader(t *testing.T) { + m := ParseHeader("key=value;") + assert.EqualValues(t, map[string]string{ + "key": "value", + }, m) +} + func TestParseFormOutOfRange(t *testing.T) { var v struct { Age int `form:"age,range=[10:20)"`