netsafe_test.go 303 B

1234567891011121314151617
  1. package archive
  2. import (
  3. "context"
  4. . "github.com/smartystreets/goconvey/convey"
  5. "testing"
  6. )
  7. func TestDao_AddNetSafeMd5(t *testing.T) {
  8. var (
  9. c = context.Background()
  10. )
  11. Convey("AddNetSafeMd5", t, func(ctx C) {
  12. _, err := d.AddNetSafeMd5(c, 23333, "ssadasdasdasd")
  13. So(err, ShouldBeNil)
  14. })
  15. }