github.com/mponton/terratest@v0.44.0/modules/azure/disk_test.go (about)

     1  //go:build azure
     2  // +build azure
     3  
     4  // NOTE: We use build tags to differentiate azure testing because we currently do not have azure access setup for
     5  // CircleCI.
     6  
     7  package azure
     8  
     9  import (
    10  	"testing"
    11  
    12  	"github.com/stretchr/testify/require"
    13  )
    14  
    15  func TestGetDiskE(t *testing.T) {
    16  	t.Parallel()
    17  
    18  	diskName := ""
    19  	rgName := ""
    20  	subID := ""
    21  
    22  	_, err := GetDiskE(diskName, rgName, subID)
    23  
    24  	require.Error(t, err)
    25  }