mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-18 00:22:41 +08:00
15 lines
217 B
Go
15 lines
217 B
Go
package calendar_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/charlienet/go-mixed/calendar"
|
|
)
|
|
|
|
func TestExecutor(t *testing.T) {
|
|
executor := calendar.NewScheduledExecutor()
|
|
|
|
executor.Schedule(nil, time.Minute)
|
|
}
|