From 3a63b5556f1ca79f0479a0ec6a31eec35a227284 Mon Sep 17 00:00:00 2001 From: Simon Aronsson Date: Wed, 17 Apr 2019 15:50:18 +0200 Subject: [PATCH] Add placeholder client test --- container/client_test.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 container/client_test.go diff --git a/container/client_test.go b/container/client_test.go new file mode 100644 index 00000000..ab3df0d7 --- /dev/null +++ b/container/client_test.go @@ -0,0 +1,15 @@ +package container + +import ( + . "github.com/onsi/ginkgo" + . "github.com/onsi/gomega" +) + +var _ = Describe("the client", func() { + When("creating a new client", func() { + It("should return a client for the api", func() { + client := NewClient(false) + Expect(client).NotTo(BeNil()) + }) + }) +}) \ No newline at end of file