mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 01:20:25 +08:00
13 lines
181 B
Go
13 lines
181 B
Go
|
|
package tasks
|
||
|
|
|
||
|
|
import "testing"
|
||
|
|
|
||
|
|
func TestNodeLogCleaner_loop(t *testing.T) {
|
||
|
|
cleaner := &NodeLogCleaner{}
|
||
|
|
err := cleaner.loop()
|
||
|
|
if err != nil {
|
||
|
|
t.Fatal(err)
|
||
|
|
}
|
||
|
|
t.Log("OK")
|
||
|
|
}
|