mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-07 18:50:27 +08:00
13 lines
194 B
Go
13 lines
194 B
Go
package iplibrary
|
|
|
|
import "testing"
|
|
|
|
func TestIPListManager_loop(t *testing.T) {
|
|
manager := NewIPListManager()
|
|
manager.pageSize = 2
|
|
err := manager.loop()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|