firestormy/scheduler/errors_test.go

11 lines
114 B
Go
Executable File

package scheduler
import "testing"
func TestErr(t *testing.T) {
var e, f error
e = f
e = ErrBadCron
f = e
}