addit_test.go 248 B

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