config_test.go 276 B

12345678910111213141516
  1. package archive
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func Test_AuditTypesConf(t *testing.T) {
  8. Convey("AuditTypesConf", t, func() {
  9. configs, err := d.AuditTypesConf(context.TODO())
  10. So(err, ShouldBeNil)
  11. Println(configs)
  12. })
  13. }