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
|
package temporal
import (
"strings"
"testing"
"github.com/go-git/go-billy/v5/memfs"
"github.com/go-git/go-billy/v5/test"
. "gopkg.in/check.v1"
)
func Test(t *testing.T) { TestingT(t) }
var _ = Suite(&TemporalSuite{})
type TemporalSuite struct {
test.FilesystemSuite
}
func (s *TemporalSuite) SetUpTest(c *C) {
fs := New(memfs.New(), "foo")
s.FilesystemSuite = test.NewFilesystemSuite(fs)
}
func (s *TemporalSuite) TestTempFileDefaultPath(c *C) {
fs := New(memfs.New(), "foo")
f, err := fs.TempFile("", "bar")
c.Assert(err, IsNil)
c.Assert(f.Close(), IsNil)
c.Assert(strings.HasPrefix(f.Name(), fs.Join("foo", "bar")), Equals, true)
}
|