stat_test.go 194 B

1234567891011121314
  1. package archive
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDao_Stat(t *testing.T) {
  8. Convey("Stat", t, func() {
  9. d.Stat(context.TODO(), 2)
  10. })
  11. }