terraform/backend/nil_test.go

10 lines
102 B
Go

package backend
import (
"testing"
)
func TestNil_impl(t *testing.T) {
var _ Backend = new(Nil)
}