packer-cn/command/fix/command_test.go
2013-07-14 16:22:18 +09:00

15 lines
231 B
Go

package fix
import (
"github.com/mitchellh/packer/packer"
"testing"
)
func TestCommand_Impl(t *testing.T) {
var raw interface{}
raw = new(Command)
if _, ok := raw.(packer.Command); !ok {
t.Fatalf("must be a Command")
}
}