mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-09-27 05:06:02 +08:00
27 lines
432 B
Go
27 lines
432 B
Go
package inprocess_test
|
|
|
|
import (
|
|
"net/url"
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
_ "riasc.eu/wice/pkg/signaling/inprocess"
|
|
"riasc.eu/wice/test"
|
|
)
|
|
|
|
func TestSuite(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "In-Process Backend Suite")
|
|
}
|
|
|
|
var _ = test.SetupLogging()
|
|
|
|
var _ = Describe("inprocess backend", func() {
|
|
u := url.URL{
|
|
Scheme: "inprocess",
|
|
}
|
|
|
|
test.BackendTest(&u, 10)
|
|
})
|