11 lines
114 B
Go
11 lines
114 B
Go
package scheduler
|
|
|
|
import "testing"
|
|
|
|
func TestErr(t *testing.T) {
|
|
var e, f error
|
|
e = f
|
|
e = ErrBadCron
|
|
f = e
|
|
}
|