add tests files to everything to test compilation

pull/919/head
Mitchell Hashimoto 13 years ago
parent ae28778caf
commit 8fb4e1ab88

@ -0,0 +1,14 @@
package validate
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")
}
}

@ -0,0 +1 @@
package main
Loading…
Cancel
Save