Files
go-common/app/interface/main/app-intl/dao/archive/stat_test.go
2019-04-22 18:49:16 +08:00

20 lines
279 B
Go

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)
})
}