diff options
author | Brent Baude <bbaude@redhat.com> | 2020-01-29 11:23:03 -0600 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-01-29 12:41:39 -0600 |
commit | a8b4e986f774da48a74d84e29fb31069bb13f43a (patch) | |
tree | 89059b0f3da74c23443984eeb7767bb99e3ba9fa /pkg/bindings/test/test_suite_test.go | |
parent | 66bb873390badc4ad88620d211de09b4668d1cd5 (diff) | |
download | podman-a8b4e986f774da48a74d84e29fb31069bb13f43a.tar.gz podman-a8b4e986f774da48a74d84e29fb31069bb13f43a.tar.bz2 podman-a8b4e986f774da48a74d84e29fb31069bb13f43a.zip |
apiv2 binding test fixes
a recent refactor in the bindings broke the tests. quick fixes to get them working again.
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/bindings/test/test_suite_test.go')
-rw-r--r-- | pkg/bindings/test/test_suite_test.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pkg/bindings/test/test_suite_test.go b/pkg/bindings/test/test_suite_test.go new file mode 100644 index 000000000..dc2b49b88 --- /dev/null +++ b/pkg/bindings/test/test_suite_test.go @@ -0,0 +1,13 @@ +package test_bindings_test + +import ( + "testing" + + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" +) + +func TestTest(t *testing.T) { + RegisterFailHandler(Fail) + RunSpecs(t, "Test Suite") +} |