mirror of
https://github.com/YuzuZensai/netbird-kubernetes-operator.git
synced 2026-09-13 10:49:15 +00:00
18 lines
459 B
Go
18 lines
459 B
Go
package controller
|
|||
|
|
|
||
|
|
import (
|
||
|
|
. "github.com/onsi/ginkgo/v2"
|
||
|
|
)
|
||
|
|
|
||
|
|
var _ = Describe("Service Controller", func() {
|
||
|
|
Context("When reconciling a resource", func() {
|
||
|
|
|
||
|
|
It("should successfully reconcile the resource", func() {
|
||
|
|
Skip("Not implemented yet")
|
||
|
|
|
||
|
|
// TODO(user): Add more specific assertions depending on your controller's reconciliation logic.
|
||
|
|
// Example: If you expect a certain status condition after reconciliation, verify it here.
|
||
|
|
})
|
||
|
|
})
|
||
|
|
})
|