mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-18 14:01:39 -04:00
12 lines
157 B
Go
12 lines
157 B
Go
package packer
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
const FixtureDir = "./test-fixtures"
|
|
|
|
func fixtureDir(n string) string {
|
|
return filepath.Join(FixtureDir, n)
|
|
}
|