12 lines
176 B
Go
12 lines
176 B
Go
package http
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
)
|
|
|
|
func TestHandler(t *testing.T) {
|
|
ctx := context.WithValue(context.TODO(), rspCodeKey{}, &rspCodeVal{})
|
|
SetRspCode(ctx, 404)
|
|
}
|