summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/integration/_fixtures/test_description/test_description_suite_test.go
blob: 8976370d30723d00c250ec589b8c635f4fec5689 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package test_description_test

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

	"testing"
)

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