blob: ba8fa3dcdda8bd6e937809e2ab668d6de1d6b190 [file] [log] [blame] [edit]
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package lang
import (
"testing"
)
func TestFunctionDescriptions(t *testing.T) {
scope := &Scope{
ConsoleMode: true,
}
for name, fn := range scope.Functions() {
if fn.Description() == "" {
t.Errorf("missing DescriptionList entry for function %q", name)
}
}
}