mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-09 09:35:03 +09:00
12 lines
197 B
Go
12 lines
197 B
Go
package threadbuilder
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func Test_YamlParse(t *testing.T) {
|
|
tb, _ := NewThreadBuilderWithTestName("userjoinexampleupdate.yml")
|
|
gr, _ := tb.Graph()
|
|
fmt.Println(gr)
|
|
}
|