mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 00:41:27 -06:00
15 lines
245 B
Go
15 lines
245 B
Go
package config
|
|
|
|
import (
|
|
"io"
|
|
"testing"
|
|
)
|
|
|
|
func TestLibuclConfigurableCloser(t *testing.T) {
|
|
var _ io.Closer = new(libuclConfigurable)
|
|
}
|
|
|
|
func TestLibuclConfigurableConfigurable(t *testing.T) {
|
|
var _ configurable = new(libuclConfigurable)
|
|
}
|