Files

20 lines
279 B
Go
Raw Permalink Normal View History

2019-04-22 20:46:32 +08:00
package archive
import (
"context"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestStat(t *testing.T) {
Convey(t.Name(), t, func() {
_, err := d.Stat(context.Background(), 2)
if err != nil {
t.Log(err)
}
err = nil
So(err, ShouldBeNil)
})
}