github.com/terraform-modules-krish/terratest@v0.29.0/modules/test-structure/test_structure_test.go (about) 1 package test_structure 2 3 import "testing" 4 5 func TestCopyToTempFolder(t *testing.T) { 6 tempFolder := CopyTerraformFolderToTemp(t, "../../", "examples") 7 t.Log(tempFolder) 8 } 9 10 func TestCopySubtestToTempFolder(t *testing.T) { 11 t.Run("Subtest", func(t *testing.T) { 12 tempFolder := CopyTerraformFolderToTemp(t, "../../", "examples") 13 t.Log(tempFolder) 14 }) 15 }