mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-20 17:32:05 -04:00
11 lines
166 B
Go
11 lines
166 B
Go
package command
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
)
|
|
|
|
func TestCountHook_impl(t *testing.T) {
|
|
var _ terraform.Hook = new(CountHook)
|
|
}
|