1// Copyright 2016 The Go Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style 3// license that can be found in the LICENSE file. 4 5package cookiejar_test 6 7import "net/http/cookiejar" 8 9type dummypsl struct { 10 List cookiejar.PublicSuffixList 11} 12 13func (dummypsl) PublicSuffix(domain string) string { 14 return domain 15} 16 17func (dummypsl) String() string { 18 return "dummy" 19} 20 21var publicsuffix = dummypsl{} 22