You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
watchtower/container/client_test.go

15 lines
293 B
Go

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