diff options
| author | Shulhan <ms@kilabit.info> | 2024-03-08 02:19:18 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2024-03-09 01:10:24 +0700 |
| commit | 4e35c509a41cecb207bf6f52e7c9a529fa9f71fb (patch) | |
| tree | 4fda47608b7a226afed77344003ab8e8f1a4788d /lib/http/requesttype_test.go | |
| parent | d309b58f63cfc382e0003cff85ab057fd06d3d23 (diff) | |
| download | pakakeh.go-4e35c509a41cecb207bf6f52e7c9a529fa9f71fb.tar.xz | |
lib/http: rename files for consistency
If the type is in CamelCase the file should be using snake_case.
Diffstat (limited to 'lib/http/requesttype_test.go')
| -rw-r--r-- | lib/http/requesttype_test.go | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/http/requesttype_test.go b/lib/http/requesttype_test.go deleted file mode 100644 index a593ff5f..00000000 --- a/lib/http/requesttype_test.go +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright 2021, Shulhan <ms@kilabit.info>. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package http - -import ( - "testing" - - "git.sr.ht/~shulhan/pakakeh.go/lib/test" -) - -func TestRequestType_String(t *testing.T) { - cases := []struct { - exp string - rt RequestType - }{ - {rt: 0, exp: ""}, - {rt: 1, exp: ""}, - {rt: 2, exp: ContentTypeForm}, - {rt: 3, exp: ContentTypeMultipartForm}, - {rt: 4, exp: ContentTypeJSON}, - } - - for _, c := range cases { - test.Assert(t, "RequestMethod.String", c.exp, c.rt.String()) - } -} |
