Files
EdgeCommon/pkg/serverconfigs/http_location_ref_test.go
2020-09-21 19:52:10 +08:00

15 lines
316 B
Go

package serverconfigs
import (
"github.com/iwind/TeaGo/logs"
"testing"
)
func TestHTTPLocationRef(t *testing.T) {
ref := &HTTPLocationRef{LocationId: 1}
logs.PrintAsJSON(ref, t)
ref.Children = append(ref.Children, &HTTPLocationRef{LocationId: 2}, &HTTPLocationRef{LocationId: 3})
logs.PrintAsJSON(ref, t)
}