github.com/homburg/packer@v0.6.1-0.20140528012651-1dcaf1716848/command/inspect/command_test.go (about)

     1  package inspect
     2  
     3  import (
     4  	"github.com/mitchellh/packer/packer"
     5  	"testing"
     6  )
     7  
     8  func TestCommand_Impl(t *testing.T) {
     9  	var raw interface{}
    10  	raw = new(Command)
    11  	if _, ok := raw.(packer.Command); !ok {
    12  		t.Fatalf("must be a Command")
    13  	}
    14  }