forked from Eun/go-hit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
method_test.go
44 lines (43 loc) · 1.23 KB
/
method_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package hit_test
//
// func TestMethod(t *testing.T) {
// t.Run("Connect", func(t *testing.T) {
// call := hit.Connect(t, "http://127.0.0.1")
// require.Equal(t, "CONNECT", call.Request().Method)
// })
//
// t.Run("Delete", func(t *testing.T) {
// call := hit.Delete(t, "http://127.0.0.1")
// require.Equal(t, "DELETE", call.Request().Method)
// })
//
// t.Run("Get", func(t *testing.T) {
// call := hit.Get(t, "http://127.0.0.1")
// require.Equal(t, "GET", call.Request().Method)
// })
//
// t.Run("Head", func(t *testing.T) {
// call := hit.Head(t, "http://127.0.0.1")
// require.Equal(t, "HEAD", call.Request().Method)
// })
//
// t.Run("Post", func(t *testing.T) {
// call := hit.Post(t, "http://127.0.0.1")
// require.Equal(t, "POST", call.Request().Method)
// })
//
// t.Run("Options", func(t *testing.T) {
// call := hit.Options(t, "http://127.0.0.1")
// require.Equal(t, "OPTIONS", call.Request().Method)
// })
//
// t.Run("Trace", func(t *testing.T) {
// call := hit.Trace(t, "http://127.0.0.1")
// require.Equal(t, "TRACE", call.Request().Method)
// })
//
// t.Run("Put", func(t *testing.T) {
// call := hit.Put(t, "http://127.0.0.1")
// require.Equal(t, "PUT", call.Request().Method)
// })
// }