any-sync/data/threadbuilder/ymlentities_test.go
2022-07-03 17:35:21 +02:00

13 lines
192 B
Go

package threadbuilder
import (
"fmt"
"testing"
)
func Test_YamlParse(t *testing.T) {
tb, _ := NewThreadBuilderFromFile("validsnapshotexample.yml")
gr, _ := tb.Graph()
fmt.Println(gr)
}