mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 10:01:08 -04: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)
|
|
}
|