Get ready for Go1
This commit is contained in:
parent
950a5926e8
commit
b95b9110a4
7
Makefile
7
Makefile
|
@ -1,7 +0,0 @@
|
||||||
include $(GOROOT)/src/Make.inc
|
|
||||||
|
|
||||||
TARG=github.com/pmylund/go-cache
|
|
||||||
GOFILES=\
|
|
||||||
cache.go\
|
|
||||||
|
|
||||||
include $(GOROOT)/src/Make.pkg
|
|
2
README
2
README
|
@ -9,7 +9,7 @@ from downtime quickly.
|
||||||
|
|
||||||
== Installation
|
== Installation
|
||||||
|
|
||||||
goinstall github.com/pmylund/go-cache
|
go get github.com/pmylund/go-cache
|
||||||
|
|
||||||
== Usage
|
== Usage
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ package cache
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"os"
|
"io/ioutil"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
@ -586,12 +586,20 @@ func TestFileSerialization(t *testing.T) {
|
||||||
tc := New(0, 0)
|
tc := New(0, 0)
|
||||||
tc.Add("a", "a", 0)
|
tc.Add("a", "a", 0)
|
||||||
tc.Add("b", "b", 0)
|
tc.Add("b", "b", 0)
|
||||||
fname := "_test/cache.dat"
|
f, err := ioutil.TempFile("", "go-cache-cache.dat")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("Couldn't create cache file:", err)
|
||||||
|
}
|
||||||
|
fname := f.Name()
|
||||||
|
f.Close()
|
||||||
tc.SaveFile(fname)
|
tc.SaveFile(fname)
|
||||||
|
|
||||||
oc := New(0, 0)
|
oc := New(0, 0)
|
||||||
oc.Add("a", "aa", 0) // this should not be overwritten
|
oc.Add("a", "aa", 0) // this should not be overwritten
|
||||||
oc.LoadFile(fname)
|
err = oc.LoadFile(fname)
|
||||||
|
if err != nil {
|
||||||
|
t.Error(err)
|
||||||
|
}
|
||||||
a, found := oc.Get("a")
|
a, found := oc.Get("a")
|
||||||
if !found {
|
if !found {
|
||||||
t.Error("a was not found")
|
t.Error("a was not found")
|
||||||
|
@ -611,7 +619,6 @@ func TestFileSerialization(t *testing.T) {
|
||||||
if b.(string) != "b" {
|
if b.(string) != "b" {
|
||||||
t.Error("b is not b")
|
t.Error("b is not b")
|
||||||
}
|
}
|
||||||
os.Remove(fname)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestSerializeUnserializable(t *testing.T) {
|
func TestSerializeUnserializable(t *testing.T) {
|
||||||
|
|
Loading…
Reference in New Issue