Add placeholder client test

pull/284/head
Simon Aronsson 5 years ago
parent f8dd9bb02a
commit 3a63b5556f

@ -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())
})
})
})
Loading…
Cancel
Save