mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-18 20:27:57 +00:00
fc29c04f82
groundwork: add pkg/concurrency and the associated test case Signed-off-by: Dave Lee <dave@gray101.com>
14 lines
206 B
Go
14 lines
206 B
Go
package downloader
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestDownloader(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Downloader test suite")
|
|
}
|