mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-07 22:53:08 -06:00
10 lines
137 B
Go
10 lines
137 B
Go
|
package config
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestHCLConfigurableConfigurable(t *testing.T) {
|
||
|
var _ configurable = new(hclConfigurable)
|
||
|
}
|