blob: 7d66205258a343fde8e5045b6ed51a0441635897 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package filesystem
import (
"testing"
"gopkg.in/src-d/go-git.v4/storage/test"
"gopkg.in/src-d/go-git.v4/utils/fs/os"
. "gopkg.in/check.v1"
)
func Test(t *testing.T) { TestingT(t) }
type StorageSuite struct {
test.BaseStorageSuite
}
var _ = Suite(&StorageSuite{})
func (s *StorageSuite) SetUpTest(c *C) {
path := c.MkDir()
storage, err := NewStorage(os.NewOS(path))
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")
}
|