packer-cn/packer/packer_test.go

12 lines
157 B
Go
Raw Normal View History

2015-05-23 17:48:07 -04:00
package packer
import (
"path/filepath"
)
const FixtureDir = "./test-fixtures"
func fixtureDir(n string) string {
return filepath.Join(FixtureDir, n)
}