Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
14 lines
191 B
Go
14 lines
191 B
Go
package main
|
|||
|
|||
import (
|
|||
"testing"
|
|||
|
|||
. "github.com/onsi/ginkgo/v2"
|
|||
. "github.com/onsi/gomega"
|
|||
)
|
|||
|
|||
func TestNdpgen(t *testing.T) {
|
|||
RegisterFailHandler(Fail)
|
|||
RunSpecs(t, "NDPGen CLI Suite")
|
|||
}
|