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.
19 lines
337 B
19 lines
337 B
package http |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
"go-common/app/admin/main/aegis/model" |
|
|
|
"github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func TestSyncResource(t *testing.T) { |
|
var ( |
|
c = context.TODO() |
|
) |
|
convey.Convey("SyncResource", t, func(ctx convey.C) { |
|
d.SyncResource(c, &model.Action{}, map[string]interface{}{"state": 1}) |
|
}) |
|
}
|
|
|