aboutsummaryrefslogtreecommitdiffstats
path: root/utils/fs/os_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/fs/os_test.go')
-rw-r--r--utils/fs/os_test.go24
1 files changed, 0 insertions, 24 deletions
diff --git a/utils/fs/os_test.go b/utils/fs/os_test.go
deleted file mode 100644
index e70c19b..0000000
--- a/utils/fs/os_test.go
+++ /dev/null
@@ -1,24 +0,0 @@
-package fs
-
-import (
- "io/ioutil"
- "os"
-
- . "gopkg.in/check.v1"
-)
-
-type OSSuite struct {
- FilesystemSuite
- path string
-}
-
-var _ = Suite(&OSSuite{})
-
-func (s *OSSuite) SetUpTest(c *C) {
- s.path, _ = ioutil.TempDir(os.TempDir(), "go-git-os-fs-test")
- s.FilesystemSuite.fs = NewOS(s.path)
-}
-func (s *OSSuite) TearDownTest(c *C) {
- err := os.RemoveAll(s.path)
- c.Assert(err, IsNil)
-}