added negative number test

This commit is contained in:
Gani Georgiev
2023-06-26 12:42:53 +03:00
parent 2e8e835a68
commit edd2eaae88
2 changed files with 3 additions and 3 deletions

View File

@@ -43,14 +43,14 @@ func TestBindBody(t *testing.T) {
url.Values{
"string": []string{"str"},
"stings": []string{"str1", "str2"},
"number": []string{"123"},
"number": []string{"-123"},
"numbers": []string{"123", "456"},
"bool": []string{"true"},
"bools": []string{"true", "false"},
}.Encode(),
),
echo.MIMEApplicationForm,
`{"bool":true,"bools":["true","false"],"number":123,"numbers":["123","456"],"stings":["str1","str2"],"string":"str"}`,
`{"bool":true,"bools":["true","false"],"number":-123,"numbers":["123","456"],"stings":["str1","str2"],"string":"str"}`,
false,
},
}