18
									
								
								codec_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								codec_test.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | ||||
| package json | ||||
|  | ||||
| import ( | ||||
| 	"bytes" | ||||
| 	"testing" | ||||
| ) | ||||
|  | ||||
| func TestReadBody(t *testing.T) { | ||||
| 	s := &struct { | ||||
| 		Name string | ||||
| 	}{} | ||||
| 	c := NewCodec() | ||||
| 	b := bytes.NewReader(nil) | ||||
| 	err := c.ReadBody(b, s) | ||||
| 	if err != nil { | ||||
| 		t.Fatal(err) | ||||
| 	} | ||||
| } | ||||
		Reference in New Issue
	
	Block a user