github.com/ActiveState/cli@v0.0.0-20240508170324-6801f60cd051/internal/constants/preprocess/preprocess_test.go (about)

     1  package preprocess
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/stretchr/testify/assert"
     7  )
     8  
     9  func TestConstants(t *testing.T) {
    10  	for k, v := range Constants {
    11  		assert.NotEmpty(t, v(), "Value for "+k+" is generated")
    12  	}
    13  }