diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-09-06 01:56:41 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-09-06 01:56:41 +0200 |
commit | ae2b10d50da5455b382ab9d543be4fe859afe9e0 (patch) | |
tree | 58cf3247a7283769c77df945f1be9a5d70e65a69 /storage/filesystem/storage_test.go | |
parent | 0b7aa259fe3da2236952843fe46db62bdee395eb (diff) | |
download | go-git-ae2b10d50da5455b382ab9d543be4fe859afe9e0.tar.gz |
storage: filesystem idx generation (wip)
Diffstat (limited to 'storage/filesystem/storage_test.go')
-rw-r--r-- | storage/filesystem/storage_test.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/storage/filesystem/storage_test.go b/storage/filesystem/storage_test.go index 3cb7dd8..f1f18f9 100644 --- a/storage/filesystem/storage_test.go +++ b/storage/filesystem/storage_test.go @@ -4,8 +4,6 @@ import ( "testing" . "gopkg.in/check.v1" - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" - "gopkg.in/src-d/go-git.v4/utils/fs" ) func Test(t *testing.T) { TestingT(t) } @@ -13,9 +11,3 @@ func Test(t *testing.T) { TestingT(t) } type StorageSuite struct{} var _ = Suite(&StorageSuite{}) - -func (s *StorageSuite) TestNewErrorNotFound(c *C) { - fs := fs.NewOS() - _, err := NewStorage(fs, "not_found/.git") - c.Assert(err, Equals, dotgit.ErrNotFound) -} |