mirror of
https://github.com/kristoferssolo/tree-sitter-bruno.git
synced 2025-10-21 20:10:34 +00:00
16 lines
362 B
Go
Generated
16 lines
362 B
Go
Generated
package tree_sitter_bruno_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
tree_sitter "github.com/tree-sitter/go-tree-sitter"
|
|
tree_sitter_bruno "github.com/kristoferssolo/tree-sitter-bruno/bindings/go"
|
|
)
|
|
|
|
func TestCanLoadGrammar(t *testing.T) {
|
|
language := tree_sitter.NewLanguage(tree_sitter_bruno.Language())
|
|
if language == nil {
|
|
t.Errorf("Error loading Bruno grammar")
|
|
}
|
|
}
|