You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
328 B
15 lines
328 B
package manager |
|
|
|
import ( |
|
"context" |
|
"github.com/smartystreets/goconvey/convey" |
|
"testing" |
|
"time" |
|
) |
|
|
|
func Test_AddReasonLog(t *testing.T) { |
|
convey.Convey("AddReasonLog", t, WithDao(func(d *Dao) { |
|
_, err := d.AddReasonLog(context.TODO(), 0, 0, 0, 0, 0, 0, time.Now(), time.Now()) |
|
convey.So(err, convey.ShouldBeNil) |
|
})) |
|
}
|
|
|