github.com/darmach/terratest@v0.34.8-0.20210517103231-80931f95e3ff/modules/azure/disk_test.go (about)

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