aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/onsi/gomega/internal/testingtsupport/testing_t_support_test.go
blob: b9fbd6c640466c6607fe70207bea544b873d7d4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package testingtsupport_test

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

	"testing"
)

func TestTestingT(t *testing.T) {
	RegisterTestingT(t)
	Ω(true).Should(BeTrue())
}