Browse Source

Add test stubs for secretsink

Signed-off-by: Marcin Kubica <marcin.kubica@engineerbetter.com>
Co-authored-by: William Young <will.young@engineerbetter.com>
Co-authored-by: Tom Godkin <tom.godkin@engineerbetter.com>
Dominic Meddick 4 years ago
parent
commit
2fe946cd43
1 changed files with 12 additions and 0 deletions
  1. 12 0
      pkg/controllers/secretsink/secretsink_controller_test.go

+ 12 - 0
pkg/controllers/secretsink/secretsink_controller_test.go

@@ -13,3 +13,15 @@ limitations under the License.
 */
 
 package secretsink
+
+import (
+	. "github.com/onsi/ginkgo/v2"
+	. "github.com/onsi/gomega"
+)
+
+var _ = Describe("", func() {
+	It("does nothing", func() {
+		Expect(true).To(BeTrue())
+	})
+
+})