mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-19 06:21:41 -04:00
15 lines
233 B
Go
15 lines
233 B
Go
// Copyright IBM Corp. 2024, 2025
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package command
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mitchellh/cli"
|
|
)
|
|
|
|
func TestVersionCommand_implements(t *testing.T) {
|
|
var _ cli.Command = &VersionCommand{}
|
|
}
|