14 lines
213 B
Go
14 lines
213 B
Go
package allocator_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestAllocator(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "renderapi/cache/allocator")
|
|
}
|