Renamed files

This commit is contained in:
Martino Ferrari
2026-01-23 14:24:43 +01:00
parent 94ee7e4880
commit 7caf3a5da5
2 changed files with 5 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
package parser_test package integration
import ( import (
"testing" "testing"

View File

@@ -1,7 +1,9 @@
package parser package integration
import ( import (
"testing" "testing"
"github.com/marte-community/marte-dev-tools/internal/parser"
) )
func TestParseBasic(t *testing.T) { func TestParseBasic(t *testing.T) {
@@ -22,7 +24,7 @@ $Node2 = {
Array = {1 2 3} Array = {1 2 3}
} }
` `
p := NewParser(input) p := parser.NewParser(input)
config, err := p.Parse() config, err := p.Parse()
if err != nil { if err != nil {
t.Fatalf("Parse error: %v", err) t.Fatalf("Parse error: %v", err)