mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 10:21:20 -05:00
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
14 lines
231 B
Go
14 lines
231 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package command
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mitchellh/cli"
|
|
)
|
|
|
|
func TestVersionCommand_implements(t *testing.T) {
|
|
var _ cli.Command = &VersionCommand{}
|
|
}
|