github.com/hashicorp/packer@v1.14.3/command/version_test.go (about)

     1  // Copyright (c) HashiCorp, Inc.
     2  // SPDX-License-Identifier: BUSL-1.1
     3  
     4  package command
     5  
     6  import (
     7  	"testing"
     8  
     9  	"github.com/mitchellh/cli"
    10  )
    11  
    12  func TestVersionCommand_implements(t *testing.T) {
    13  	var _ cli.Command = &VersionCommand{}
    14  }