route/vendor/github.com/mitchellh/cli/command_mock_test.go

10 lines
120 B
Go

package cli
import (
"testing"
)
func TestMockCommand_implements(t *testing.T) {
var _ Command = new(MockCommand)
}