mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-19 13:12:58 -06:00
12 lines
166 B
Go
12 lines
166 B
Go
|
package command
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/hashicorp/terraform/terraform"
|
||
|
)
|
||
|
|
||
|
func TestCountHook_impl(t *testing.T) {
|
||
|
var _ terraform.Hook = new(CountHook)
|
||
|
}
|