summaryrefslogtreecommitdiff
path: root/static_pool_test.go
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2020-10-26 21:28:11 +0300
committerWolfy-J <[email protected]>2020-10-26 21:28:11 +0300
commit9d2de5e46110c07eceb87dcfde3af9b6a6c4a76c (patch)
treee17593c4320f004b5eb7b1321a5f6bcb538b34cc /static_pool_test.go
parent722584b153c009612ccbaf1fb7a9911f7afae476 (diff)
- lazy load test
Diffstat (limited to 'static_pool_test.go')
-rwxr-xr-xstatic_pool_test.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/static_pool_test.go b/static_pool_test.go
index ffa39c2f..a3b19bad 100755
--- a/static_pool_test.go
+++ b/static_pool_test.go
@@ -320,12 +320,15 @@ func Test_StaticPool_Debug_Worker(t *testing.T) {
assert.NotNil(t, p)
- assert.Len(t, p.Workers(), 1)
+ assert.Len(t, p.Workers(), 0)
var lastPID string
res, _ := p.Exec(Payload{Body: []byte("hello")})
assert.NotEqual(t, lastPID, string(res.Body))
+ // todo: necessary?
+ assert.Len(t, p.Workers(), 0)
+
for i := 0; i < 10; i++ {
lastPID = strconv.Itoa(int(p.Workers()[0].Pid()))
res, err := p.Exec(Payload{Body: []byte("hello")})