16 lines
224 B
Go
16 lines
224 B
Go
// The boilerplate needed for Ginkgo
|
|
|
|
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestSample(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "plugins/sbr")
|
|
}
|