blob: 8f832080846d57361208be6e37afe6f58fbead39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package scheduler_test
import (
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestScheduler(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Scheduler Suite")
}
|