2018-08-09 21:55:02 +00:00
|
|
|
package shared_test
|
2018-08-07 15:51:34 +00:00
|
|
|
|
2018-08-07 20:17:29 +00:00
|
|
|
import (
|
|
|
|
"testing"
|
2018-08-07 15:51:34 +00:00
|
|
|
|
2018-08-07 20:17:29 +00:00
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
)
|
|
|
|
|
2018-08-09 21:55:02 +00:00
|
|
|
func TestShared(t *testing.T) {
|
2018-08-07 20:17:29 +00:00
|
|
|
RegisterFailHandler(Fail)
|
2018-08-09 21:55:02 +00:00
|
|
|
RunSpecs(t, "Shared Suite")
|
2018-08-07 15:51:34 +00:00
|
|
|
}
|