net/http: delete temporary files.

From-SVN: r182256
This commit is contained in:
Ian Lance Taylor 2011-12-12 18:45:08 +00:00
parent 0b27284847
commit fe4bf59fb6

View File

@ -7,6 +7,7 @@ package http_test
import (
"io/ioutil"
"net/http"
"os"
"path/filepath"
"testing"
)
@ -28,6 +29,8 @@ func TestFileTransport(t *testing.T) {
fname := filepath.Join(dname, "foo.txt")
err = ioutil.WriteFile(fname, []byte("Bar"), 0644)
check("WriteFile", err)
defer os.Remove(dname)
defer os.Remove(fname)
tr := &http.Transport{}
tr.RegisterProtocol("file", http.NewFileTransport(http.Dir(dname)))