up_income_test.go 325 B

123456789101112131415
  1. package income
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func Test_InsertUpIncome(t *testing.T) {
  8. Convey("InsertUpIncome", t, func() {
  9. _, err := d.InsertUpIncome(context.Background(), "(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,'2018-06-24',1,2,3,4,5,6)")
  10. So(err, ShouldBeNil)
  11. })
  12. }