summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/internal/spec/spec_suite_test.go
blob: 8681a7206841a5cb73dd46b1300335c3e56893c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package spec_test

import (
	. "github.com/onsi/ginkgo"
	. "github.com/onsi/gomega"

	"testing"
)

func TestSpec(t *testing.T) {
	RegisterFailHandler(Fail)
	RunSpecs(t, "Spec Suite")
}