add tests files to everything to test compilation

This commit is contained in:
Mitchell Hashimoto 2013-07-30 16:05:20 -07:00
parent ae28778caf
commit 8fb4e1ab88
13 changed files with 26 additions and 0 deletions

View File

@ -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")
}
}

1
packer_test.go Normal file
View File

@ -0,0 +1 @@
package main

View File

@ -0,0 +1 @@
package main

View File

@ -0,0 +1 @@
package main

View File

@ -0,0 +1 @@
package main

View File

@ -0,0 +1 @@
package main

View File

@ -0,0 +1 @@
package main

View File

@ -0,0 +1 @@
package main

View File

@ -0,0 +1 @@
package main

View File

@ -0,0 +1 @@
package main

View File

@ -0,0 +1 @@
package main

View File

@ -0,0 +1 @@
package main

View File

@ -0,0 +1 @@
package main