diff options
Diffstat (limited to 'storage/filesystem/storage_test.go')
-rw-r--r-- | storage/filesystem/storage_test.go | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/storage/filesystem/storage_test.go b/storage/filesystem/storage_test.go index f55452d..c24d5d5 100644 --- a/storage/filesystem/storage_test.go +++ b/storage/filesystem/storage_test.go @@ -18,20 +18,8 @@ type StorageSuite struct { var _ = Suite(&StorageSuite{}) func (s *StorageSuite) SetUpTest(c *C) { - path := c.MkDir() - storage, err := NewStorage(os.New(path)) + storage, err := NewStorage(os.New(c.MkDir())) c.Assert(err, IsNil) - s.BaseStorageSuite = test.NewBaseStorageSuite( - storage.ObjectStorage(), - storage.ReferenceStorage(), - storage.ConfigStorage(), - ) -} - -func (s *StorageSuite) TestTxObjectStorageSetAndCommit(c *C) { - c.Skip("tx not supported") -} -func (s *StorageSuite) TestTxObjectStorageSetAndRollback(c *C) { - c.Skip("tx not supported") + s.BaseStorageSuite = test.NewBaseStorageSuite(storage) } |