Add placeholder client test
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…
Reference in New Issue