diff --git a/container/client_test.go b/container/client_test.go new file mode 100644 index 0000000..ab3df0d --- /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