github.com/hashicorp/packer@v1.14.3/packer/packer_test.go (about) 1 // Copyright (c) HashiCorp, Inc. 2 // SPDX-License-Identifier: BUSL-1.1 3 4 package packer 5 6 import ( 7 "path/filepath" 8 ) 9 10 const FixtureDir = "./test-fixtures" 11 12 func fixtureDir(n string) string { 13 return filepath.Join(FixtureDir, n) 14 }