difftastic/vendored_parsers/tree-sitter-f-sharp/bindings/go/binding_test.go

16 lines
329 B
Go

package tree_sitter_fsharp_test
import (
"testing"
tree_sitter "github.com/smacker/go-tree-sitter"
"github.com/tree-sitter/tree-sitter-fsharp"
)
func TestCanLoadGrammar(t *testing.T) {
language := tree_sitter.NewLanguage(tree_sitter_fsharp.Language())
if language == nil {
t.Errorf("Error loading Fsharp grammar")
}
}