mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-25 17:24:00 -04:00
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
15 lines
227 B
Go
15 lines
227 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package packer
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
const FixtureDir = "./test-fixtures"
|
|
|
|
func fixtureDir(n string) string {
|
|
return filepath.Join(FixtureDir, n)
|
|
}
|