mirror of
https://github.com/elladunbar/tree-sitter-hy.git
synced 2025-11-05 14:59:55 -06:00
15 lines
341 B
Go
Generated
15 lines
341 B
Go
Generated
package tree_sitter_hy_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
tree_sitter "github.com/tree-sitter/go-tree-sitter"
|
|
tree_sitter_hy "github.com/evdunbar/tree-sitter-hy/bindings/go"
|
|
)
|
|
|
|
func TestCanLoadGrammar(t *testing.T) {
|
|
language := tree_sitter.NewLanguage(tree_sitter_hy.Language())
|
|
if language == nil {
|
|
t.Errorf("Error loading Hy grammar")
|
|
}
|
|
}
|