mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-19 06:21:41 -04:00
14 lines
146 B
Go
14 lines
146 B
Go
package command
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mitchellh/cli"
|
|
)
|
|
|
|
func testMeta(t *testing.T) Meta {
|
|
return Meta{
|
|
Ui: new(cli.MockUi),
|
|
}
|
|
}
|