mirror of
https://github.com/containrrr/watchtower.git
synced 2025-09-22 05:40:50 +02:00
Add placeholder client test
This commit is contained in:
parent
f8dd9bb02a
commit
3a63b5556f
1 changed files with 15 additions and 0 deletions
15
container/client_test.go
Normal file
15
container/client_test.go
Normal 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())
|
||||
})
|
||||
})
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue