aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/libgo/go/exp/cookiejar/storage_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/libgo/go/exp/cookiejar/storage_test.go')
-rw-r--r--gcc-4.8.1/libgo/go/exp/cookiejar/storage_test.go48
1 files changed, 0 insertions, 48 deletions
diff --git a/gcc-4.8.1/libgo/go/exp/cookiejar/storage_test.go b/gcc-4.8.1/libgo/go/exp/cookiejar/storage_test.go
deleted file mode 100644
index de6aa2b6a..000000000
--- a/gcc-4.8.1/libgo/go/exp/cookiejar/storage_test.go
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright 2012 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package cookiejar
-
-import (
- "testing"
-)
-
-var validStorageKeyTests = map[string]bool{
- "": false,
- ".": false,
- "..": false,
- "/": false,
- "EXAMPLE.com": false,
- "\n": false,
- "\r": false,
- "\r\n": false,
- "\x00": false,
- "back\\slash": false,
- "co:lon": false,
- "com,ma": false,
- "semi;colon": false,
- "sl/ash": false,
- "sp ace": false,
- "under_score": false,
- "π": false,
-
- "-": true,
- ".dot": true,
- ".dot.": true,
- ".metadata": true,
- ".x..y..z...": true,
- "dot.": true,
- "example.com": true,
- "foo": true,
- "hy-phen": true,
- "xn--bcher-kva.ch": true,
-}
-
-func TestValidStorageKey(t *testing.T) {
- for key, want := range validStorageKeyTests {
- if got := ValidStorageKey(key); got != want {
- t.Errorf("%q: got %v, want %v", key, got, want)
- }
- }
-}