open-nomad/command/sentinel_apply_test.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
292 B
Go
Raw Permalink Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
2017-09-19 14:47:10 +00:00
package command
import (
"testing"
"github.com/hashicorp/nomad/ci"
2017-09-19 14:47:10 +00:00
"github.com/mitchellh/cli"
)
func TestSentinelApplyCommand_Implements(t *testing.T) {
ci.Parallel(t)
2017-09-19 14:47:10 +00:00
var _ cli.Command = &SentinelApplyCommand{}
}