Add placeholder client test

This commit is contained in:
Simon Aronsson 2019-04-17 15:50:18 +02:00
parent f8dd9bb02a
commit 3a63b5556f

15
container/client_test.go Normal file
View file

@ -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())
})
})
})