Skip to content

Commit

Permalink
Add test
Browse files Browse the repository at this point in the history
Signed-off-by: Alan Cha <[email protected]>
  • Loading branch information
Alan-Cha committed Sep 6, 2023
1 parent 4279379 commit 5cff776
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions base/kubedriver_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package base

import (
"testing"

"github.com/stretchr/testify/assert"
"helm.sh/helm/v3/pkg/cli"
)

func TestInitKube(t *testing.T) {
kubeDriver := NewKubeDriver(cli.New())
err := kubeDriver.initKube()

assert.NoError(t, err)
}

0 comments on commit 5cff776

Please sign in to comment.