github.com/helmwave/helmwave@v0.36.4-0.20240509190856-b35563eba4c6/pkg/action/diff_internal_test.go (about)

     1  //go:build integration
     2  
     3  package action
     4  
     5  import (
     6  	"testing"
     7  
     8  	"github.com/databus23/helm-diff/v3/diff"
     9  	"github.com/stretchr/testify/suite"
    10  )
    11  
    12  type DiffTestSuite struct {
    13  	suite.Suite
    14  }
    15  
    16  func TestDiffTestSuite(t *testing.T) {
    17  	t.Parallel()
    18  	suite.Run(t, new(DiffTestSuite))
    19  }
    20  
    21  func (ts *DiffTestSuite) TestCmd() {
    22  	s := &Diff{Options: &diff.Options{}}
    23  	cmd := s.Cmd()
    24  
    25  	ts.Require().NotNil(cmd)
    26  	ts.Require().NotEmpty(cmd.Name)
    27  }